* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* Green Growth Arrow Custom Mouse Cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-10%, -90%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  will-change: left, top;
  transition: transform 0.15s ease-out;
}

body:hover #custom-cursor {
  opacity: 1;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.5);
}

.section {
  padding: 90px 0;
  min-height: calc(100vh - 80px);
}

/* White & Gray Card Style */
.glass-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 15px 35px rgba(217, 4, 41, 0.12);
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-badge-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Feature Pillars Section */
.pillar-card {
  text-align: center;
  padding: 35px 25px;
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-red);
  box-shadow: 0 15px 35px rgba(239, 35, 60, 0.12);
}

.pillar-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 4, 41, 0.1), rgba(239, 35, 60, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-red);
  border: 1px solid rgba(239, 35, 60, 0.2);
}

/* Service Card Key-Points Sub-List */
.key-points {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-gray);
}

.key-points ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.key-points ul li {
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-body);
  border: 1px solid var(--border-gray);
}

/* Package Tabs Controls */
.package-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 26px;
  border-radius: 30px;
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-gray);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
  color: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.35);
}

.package-tab-content {
  display: none;
}

.package-tab-content.active {
  display: block;
}

/* Pricing Card Checklists */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-red);
  margin: 10px 0;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-gray);
}

.pricing-features li i.icon-yes {
  color: #00D26A;
  font-size: 0.95rem;
}

.pricing-features li i.icon-no {
  color: #CBD5E1;
  font-size: 0.85rem;
}

.pricing-features li.disabled {
  color: #94A3B8;
  text-decoration: line-through;
}

/* FAQ Accordion Item Styling */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--primary-red);
}

.faq-question {
  padding: 20px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-red);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 25px;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Responsive Grid Extensions */
@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .package-tabs {
    flex-direction: column;
  }
  .tab-btn {
    width: 100%;
    text-align: center;
  }
}


