@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

:root {
  --forest: #3D5A4C;
  --forest-deep: #2E4A3B;
  --forest-light: #4A6B5D;
  --cream: #EDE4D3;
  --cream-light: #F5F0E6;
  --white: #FAFAFA;
  --charcoal: #1A1A1A;
  --muted: #6B7280;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

h4 { margin: 0; }

p {
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; padding: 0; margin: 0; }

img { max-width: 100%; display: block; }

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 100px 0; }


/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(61,90,76,0.25);
}

.btn-outline-light:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-cream {
  background: var(--cream);
  color: var(--forest-deep);
  font-weight: 700;
}

.btn-cream:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; justify-content: center; }

.nav-cta-mobile { display: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  margin-top: 24px;
  transition: gap var(--transition);
}

.link-arrow:hover { gap: 12px; }


/* ========== NAVIGATION ========== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.nav-brand span {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: 0.85rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  display: block;
}


/* ========== HERO ========== */

.hero {
  padding: 72px 0 12px;
  background: #FAFAFC;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-top {
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}

.hero-top h1 {
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #111827;
  margin-top: 24px;
  margin-bottom: 8px;
}

.hero-sub {
  max-width: 480px;
  margin: 0 auto 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #6B7280;
}

.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.hero-actions .btn-primary {
  background: #1C3933;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-actions .btn-outline {
  background: #FFFFFF;
  color: #111827;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-actions .btn-outline:hover {
  border-color: #1C3933;
  color: #1C3933;
  background: #F9FAFB;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rating-score {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111827;
}

.rating-count {
  font-size: 0.8rem;
  color: #6B7280;
}

/* Floating Badges */
.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-floating-badge.float-1 {
  top: 0px;
  left: 8%;
  width: 38px;
  height: 38px;
  background: #1C3933;
  color: #DBF4A7;
}

.hero-floating-badge.float-2 {
  top: 50px;
  left: 3%;
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #111827;
}

.hero-floating-badge.float-3 {
  top: 95px;
  left: 8%;
  width: 30px;
  height: 30px;
  background: #DBF4A7;
  border-radius: 8px;
  color: #1C3933;
}

.hero-floating-badge.float-4 {
  top: 10px;
  right: 8%;
  width: 30px;
  height: 30px;
  background: #DBF4A7;
  border-radius: 8px;
  color: #1C3933;
}

.hero-floating-badge.float-5 {
  top: 60px;
  right: 3%;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #1C3933;
}


/* Bento Grid Layout - Fits 100vh Above The Fold */
.hero-bento {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
  width: calc(100% + 64px);
  margin-left: -32px;
}

.bento-card {
  box-sizing: border-box;
}

/* Card 1: Tall Dark Accent Card (Left) */
.bento-image-card {
  width: 16%;
  height: 290px;
  background: linear-gradient(180deg, rgba(28, 57, 51, 0.4) 0%, rgba(28, 57, 51, 0.92) 100%), url('assets/hero.jpg') center/cover no-repeat;
  border-radius: 22px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Card 2: Dark Green 100+ */
.bento-dark-card {
  width: 15%;
  height: 185px;
  background: #1C3933;
  border-radius: 20px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
}

.bento-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.bento-stat-num.dark {
  color: #1C3933;
}

.bento-card-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.bento-card-sub.dark {
  color: #1C3933;
  opacity: 0.85;
}

/* Card 3: White Center Total Projects Card */
.bento-white-card {
  width: 18%;
  height: 185px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EFF1F5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  flex-shrink: 0;
}

.bento-white-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bento-white-icon {
  width: 28px;
  height: 28px;
  background: #DBF4A7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C3933;
}

.bento-white-dots {
  color: #9CA3AF;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.bento-white-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 2px;
}

.bento-mini-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4B5563;
}

.bento-verified {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1C3933;
  display: flex;
  align-items: center;
  gap: 2px;
}

.bento-big-stat .stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.bento-white-footer {
  font-size: 0.7rem;
  color: #9CA3AF;
  border-top: 1px solid #F3F4F6;
  padding-top: 8px;
}

.bento-highlight {
  color: #10B981;
  font-weight: 700;
}

/* Card 4: Light Lime Green 6+ */
.bento-lime-card {
  width: 15%;
  height: 185px;
  background: #DBF4A7;
  border-radius: 20px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
}

/* Card 5: Tall Dark Accent Card (Right) */
.bento-accent-card {
  width: 16%;
  height: 290px;
  background: linear-gradient(180deg, rgba(28, 57, 51, 0.4) 0%, rgba(28, 57, 51, 0.92) 100%), url('assets/bento_right.jpg') center/cover no-repeat;
  border-radius: 22px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.bento-accent-gauge {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.bento-accent-heading {
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}



/* ========== SERVICES ========== */

.services {
  background: var(--cream-light);
  position: relative;
}

.section-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.section-divider svg {
  width: 100%;
  height: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(61,90,76,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

.service-text h3 { margin-bottom: 6px; color: var(--charcoal); }
.service-text p { font-size: 0.88rem; margin: 0; }


/* ========== BENEFITS ========== */

.benefits {
  background: #FFFFFF;
  padding: 90px 0;
}

.benefits .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Layered Dashboard Mockup (Left Side) */
.dashboard-mockup-wrapper {
  position: relative;
  background: #F8FAFC;
  border-radius: 28px;
  padding: 32px 24px 36px 24px;
  width: 100%;
  max-width: 440px;
  min-height: 360px;
  box-sizing: border-box;
}

.dashboard-main-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  padding: 22px 18px;
  width: 290px;
  box-sizing: border-box;
}

.dash-header {
  margin-bottom: 16px;
}

.dash-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 4px;
}

.dash-stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
}

.dash-trend {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 2px;
}

.dash-progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-progress-item {
  display: grid;
  grid-template-columns: 75px 1fr 32px;
  align-items: center;
  gap: 8px;
}

.dash-item-label {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 500;
}

.dash-bar-bg {
  height: 7px;
  background: #F1F5F9;
  border-radius: 10px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: #CBD5E1;
  border-radius: 10px;
}

.dash-item-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0F172A;
  text-align: right;
}

.dash-bars-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
  padding-top: 6px;
}

.dash-col-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

.dash-col-bar.dark {
  background: #1C3933;
}

.dash-col-bar.teal {
  background: #10B981;
}

/* Floating Card Overlapping Top Right / Bottom Right */
.dashboard-floating-card {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 195px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #F1F5F9;
  padding: 16px 14px;
  z-index: 2;
  box-sizing: border-box;
}

/* Right Content Area */
.benefits-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 12px;
}

.benefits-sub {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 28px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-check-circle {
  width: 24px;
  height: 24px;
  background: #1C3933;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}


/* ========== PROCESS ========== */

.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: rgba(61,90,76,0.12);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--cream-light);
  border: 2px solid var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--forest);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--forest);
  color: var(--cream);
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; margin: 0 auto; max-width: 200px; }


/* ========== PRICING ========== */

.pricing {
  background: var(--forest-deep);
  color: var(--cream);
}

.pricing .section-header h2,
.pricing .section-header p { color: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.pricing-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(237,228,211,0.6);
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: rgba(237,228,211,0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--cream);
}

.pricing-amount span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.5;
}

.pricing-card .btn-outline-light {
  color: var(--cream);
  border-color: rgba(237,228,211,0.2);
  margin-bottom: 24px;
}

.pricing-card .btn-outline-light:hover {
  background: var(--cream);
  color: var(--forest-deep);
  border-color: var(--cream);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(237,228,211,0.75);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--cream);
  opacity: 0.5;
}

.pricing-pro {
  margin-top: 24px;
}

.pricing-pro-inner {
  background: var(--forest-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pricing-pro-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-pro-text p {
  color: rgba(237,228,211,0.65);
  font-size: 0.9rem;
  max-width: 480px;
}

.pricing-pro-text strong {
  color: var(--cream);
}


/* ========== PARTNERS ========== */

.partners .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.partners-content h2 { margin-bottom: 16px; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partner-logo {
  background: var(--cream-light);
  border: 1px solid rgba(61,90,76,0.08);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all var(--transition);
}

.partner-logo:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--white);
  box-shadow: var(--shadow);
}


/* ========== CTA ========== */

.cta-section {
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(237,228,211,0.6);
  margin: 0 auto 32px;
  max-width: 480px;
}


/* ========== FOOTER ========== */

.footer {
  background: #1C2E24;
  color: rgba(237,228,211,0.6);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-brand span { color: var(--cream); }

.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  max-width: 260px;
  line-height: 1.7;
  color: rgba(237,228,211,0.5);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(237,228,211,0.5);
  transition: all var(--transition);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(237,228,211,0.35);
}

.footer-bottom a { color: rgba(237,228,211,0.35); }
.footer-bottom a:hover { color: var(--cream); }


/* ========== SCROLL ANIMATIONS ========== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




/* ========== FEATURED WORK (HOME PAGE) ========== */

.featured-work {
  background: #0F1A16;
  padding: 100px 0;
  position: relative;
}

.featured-work .section-header h2 { color: var(--cream); }
.featured-work .section-header p { color: rgba(237,228,211,0.5); }

.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.work-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}

.work-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(219,244,167,0.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}

.work-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(219,244,167,0.1);
  color: #DBF4A7;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(219,244,167,0.15);
  width: fit-content;
}

.work-card h3 {
  font-size: 1.08rem;
  color: #FAFAFA;
  line-height: 1.3;
  margin: 0;
}

.work-card p {
  font-size: 0.84rem;
  color: rgba(237,228,211,0.48);
  line-height: 1.65;
  max-width: 100%;
  margin: 0;
  flex: 1;
}

.work-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(219,244,167,0.06);
  border: 1px solid rgba(219,244,167,0.1);
  border-radius: 12px;
  padding: 12px 14px;
}

.work-metric-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: #DBF4A7;
  line-height: 1;
  white-space: nowrap;
}

.work-metric-label {
  font-size: 0.73rem;
  color: rgba(219,244,167,0.58);
  line-height: 1.35;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(219,244,167,0.65);
  margin-top: 4px;
  transition: all var(--transition);
  text-decoration: none;
}

.work-link:hover { color: #DBF4A7; gap: 10px; }

.featured-work-cta {
  text-align: center;
  margin-top: 52px;
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(237,228,211,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
}

.btn-outline-cream:hover {
  background: rgba(237,228,211,0.08);
  border-color: rgba(237,228,211,0.5);
  transform: translateY(-1px);
}


/* ========== PAGE HERO (inner pages) ========== */

.page-hero {
  background: #FAFAFC;
  padding: 130px 0 72px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(28,57,51,0.07);
  color: #1C3933;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(28,57,51,0.1);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 0.97rem;
  color: #6B7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ========== CASE STUDIES (work.html) ========== */

.case-studies {
  background: #F8FAFC;
  padding: 80px 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  background: #FFFFFF;
  border: 1px solid #EAEEF2;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--transition);
}

.case-card:hover {
  border-color: rgba(28,57,51,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.case-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.case-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.case-tag {
  background: #F0FDF4;
  color: #1C3933;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(28,57,51,0.1);
}

.case-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #E5E7EB;
  flex-shrink: 0;
}

.case-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin: 0;
}

.case-industry {
  display: block;
  font-size: 0.77rem;
  color: #9CA3AF;
  font-weight: 500;
  margin-top: 4px;
}

.case-section { display: flex; flex-direction: column; gap: 4px; }

.case-section-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}

.case-text {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
}

.case-divider {
  height: 1px;
  background: #F3F4F6;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-metric {
  background: #F8FAFC;
  border: 1px solid #F0F2F5;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.case-metric-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1C3933;
  line-height: 1;
}

.case-metric-label {
  display: block;
  font-size: 0.68rem;
  color: #9CA3AF;
  margin-top: 4px;
  line-height: 1.3;
}

.case-card.full-width { grid-column: 1 / -1; }


/* ========== SERVICES EXPANDED (services.html) ========== */

.services-expanded {
  background: #FFFFFF;
  padding: 80px 0;
}

.services-list-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-exp-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  background: #FAFAFC;
  border: 1px solid #EAEEF2;
  border-radius: 24px;
  padding: 36px 40px;
  align-items: flex-start;
  transition: all var(--transition);
}

.service-exp-card:hover {
  border-color: rgba(28,57,51,0.18);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.service-exp-left { display: flex; flex-direction: column; gap: 12px; }

.service-big-icon {
  width: 50px;
  height: 50px;
  background: #1C3933;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DBF4A7;
}

.service-exp-left h3 { font-size: 1.2rem; color: #111827; line-height: 1.25; }

.service-exp-left > p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  max-width: 100%;
}

.service-exp-right { display: flex; flex-direction: column; gap: 14px; }

.service-exp-right h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9CA3AF;
}

.service-points { display: flex; flex-direction: column; gap: 9px; }

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.service-point-check {
  width: 18px;
  height: 18px;
  background: #F0FDF4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1C3933;
  margin-top: 2px;
}


/* ========== FAQ ========== */

.faq-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #EAEEF2;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: rgba(28,57,51,0.22);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 26px;
  height: 26px;
  background: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6B7280;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: #1C3933;
  color: #DBF4A7;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  max-width: 100%;
  margin: 0;
}

.faq-item.open .faq-answer { max-height: 300px; }


/* ========== PRICING PAGE ========== */

.pricing-page-section {
  background: #FAFAFC;
  padding: 80px 0;
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: center;
}

.pricing-page-card {
  background: #FFFFFF;
  border: 1px solid #EAEEF2;
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.pricing-page-card.featured {
  background: #1C3933;
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(28,57,51,0.28);
}

.pricing-page-card:hover:not(.featured) {
  border-color: rgba(28,57,51,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.pricing-page-tier {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 10px;
}

.pricing-page-card.featured .pricing-page-tier { color: rgba(219,244,167,0.6); }

.pricing-page-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-page-card.featured .pricing-page-price { color: #FAFAFA; }

.pricing-page-price-note {
  font-size: 0.77rem;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.pricing-page-card.featured .pricing-page-price-note { color: rgba(219,244,167,0.45); }

.pricing-separator {
  height: 1px;
  background: #F3F4F6;
  margin-bottom: 20px;
}

.pricing-page-card.featured .pricing-separator { background: rgba(255,255,255,0.1); }

.pricing-page-desc {
  font-size: 0.84rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 100%;
}

.pricing-page-card.featured .pricing-page-desc { color: rgba(219,244,167,0.55); }

.pricing-page-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pricing-page-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: #374151;
  line-height: 1.45;
}

.pricing-page-card.featured .pricing-page-features li { color: rgba(219,244,167,0.82); }

.pricing-check {
  width: 18px;
  height: 18px;
  background: #F0FDF4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1C3933;
  margin-top: 2px;
}

.pricing-page-card.featured .pricing-check {
  background: rgba(219,244,167,0.15);
  color: #DBF4A7;
}

/* Comparison Table */

.comparison-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 56px;
  border-radius: 16px;
  border: 1px solid #EAEEF2;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  border-bottom: 2px solid #F3F4F6;
  background: #FAFAFC;
}

.comparison-table thead th:first-child { text-align: left; }

.comparison-table thead th.highlight {
  color: #1C3933;
  background: rgba(28,57,51,0.05);
}

.comparison-table tbody td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #F9FAFB;
  color: #374151;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.comparison-table tbody td.highlight-col { background: rgba(28,57,51,0.02); }

.comparison-table tbody tr:last-child td { border-bottom: none; }

.check-yes {
  width: 20px;
  height: 20px;
  background: #F0FDF4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C3933;
  margin: 0 auto;
}

.check-no {
  color: #D1D5DB;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 20px;
}

/* Active nav for inner pages */
.nav-link-active { color: var(--charcoal) !important; }
.nav-link-active::after { width: 100% !important; }


/* ========== RESPONSIVE ========== */


@media (max-width: 1100px) {
  .hero-bento {
    flex-wrap: wrap;
    align-items: center;
  }
  .bento-image-card,
  .bento-dark-card,
  .bento-white-card,
  .bento-lime-card,
  .bento-accent-card {
    height: 280px;
    width: 45%;
    flex-grow: 1;
  }
  .hero-floating-badge {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before { display: none; }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-pro-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .pricing-pro-text p { max-width: 100%; }
  .partners .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-cta-mobile { display: inline-flex; }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
  .navbar .nav-cta { display: none; }

  .hero { padding: 110px 0 48px; }
  .hero-top { margin-bottom: 32px; }

  .hero-bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bento-image {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 200px;
  }
  .bento-dark,
  .bento-white,
  .bento-light,
  .bento-accent {
    grid-row: auto;
    grid-column: auto;
  }
  .bento-accent {
    grid-column: 1 / 3;
    flex-direction: row;
    align-items: center;
  }
  .bento-card { padding: 18px 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { gap: 14px; }
  .benefits .container { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section { padding: 64px 0; }
  .cta-section { padding: 72px 0; }
  h1 { font-size: 2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-bento {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bento-image {
    grid-column: auto;
    min-height: 180px;
  }
  .bento-accent {
    grid-column: auto;
  }
  .stat-number { font-size: 1.5rem; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-pro-inner { padding: 28px 24px; }
  .process-steps { grid-template-columns: 1fr; }
}
