/* ============================================
   GREENWAVECM - MAIN STYLESHEET
   Color Palette:
   --green-dark:    #0a2e1a
   --green-mid:     #145a32
   --green-brand:   #1a7a40
   --green-bright:  #22c55e
   --green-light:   #86efac
   --green-tint:    #f0fdf4
   --white:         #ffffff
   --black:         #030f07
   --gray-900:      #0f1f14
   --gray-800:      #1a2e1f
   --gray-600:      #4a6055
   --gray-400:      #8aaa94
   --gray-200:      #d4e8da
   --gray-100:      #eef7f1
============================================ */

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

:root {
  --green-dark: #0a2e1a;
  --green-mid: #145a32;
  --green-brand: #1a7a40;
  --green-bright: #22c55e;
  --green-light: #86efac;
  --green-tint: #f0fdf4;
  --white: #ffffff;
  --black: #030f07;
  --gray-900: #0f1f14;
  --gray-800: #1a2e1f;
  --gray-600: #4a6055;
  --gray-400: #8aaa94;
  --gray-200: #d4e8da;
  --gray-100: #eef7f1;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 46, 26, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 46, 26, 0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ UTILITIES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.centered { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gradient-text { background: linear-gradient(135deg, var(--green-brand), var(--green-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--green-brand); color: var(--white); border-color: var(--green-brand); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green-brand); border-color: var(--green-brand); }
.btn-outline:hover { background: var(--green-brand); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-white:hover { background: var(--green-tint); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

/* ============ SECTION TAG ============ */
.section-tag {
  display: inline-block; padding: 6px 16px; background: var(--green-tint);
  color: var(--green-brand); font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 100px; border: 1px solid var(--green-light);
  margin-bottom: 20px;
}

/* ============ SECTION HEADER ============ */
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--gray-600); max-width: 600px; }
.section-header.centered { display: flex; flex-direction: column; align-items: center; }
.section-header.centered p { text-align: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); transition: all var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--green-brand), var(--green-bright));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 18px;
}
.logo-text { font-size: 20px; font-weight: 700; color: var(--gray-900); }
.logo-accent { color: var(--green-brand); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-600); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green-brand); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all var(--transition); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gray-900); position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,122,64,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(26,122,64,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg-grid::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(26,122,64,0.18) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; padding: 96px 24px; }
.hero-badge {
  display: inline-block; padding: 8px 18px; background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3); border-radius: 100px;
  color: var(--green-light); font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(40px, 6vw, 76px); font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--gray-400); max-width: 620px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1; }
.hero-scroll-indicator span { color: var(--gray-400); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--green-bright), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============ TRUST BAR ============ */
.trust-bar { background: var(--green-tint); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.trust-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.trust-items { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-items span { font-size: 14px; font-weight: 500; color: var(--green-brand); }
.trust-items .dot { color: var(--green-light); font-size: 18px; }

/* ============ INTRO ============ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-left h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.intro-left p { font-size: 17px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.8; }
.intro-right { display: flex; flex-direction: column; gap: 20px; }
.pillar-card {
  padding: 28px 32px; border-radius: var(--radius-lg); background: var(--gray-100);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.pillar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pillar-card--accent { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-color: var(--green-brand); color: var(--white); }
.pillar-card--accent p { color: rgba(255,255,255,0.8); }
.pillar-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.marketing-icon { background: var(--green-tint); color: var(--green-brand); }
.tech-icon { background: rgba(255,255,255,0.15); color: var(--green-light); }
.pillar-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============ SERVICES GRID ============ */
.services-snap { background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 32px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.service-card--green { background: var(--green-dark); border-color: var(--green-mid); color: var(--white); }
.service-card--green:hover { border-color: var(--green-bright); }
.service-card--green h3 { color: var(--white); }
.service-card--green p { color: rgba(255,255,255,0.75); }
.service-num { font-size: 42px; font-weight: 900; color: var(--green-light); opacity: 0.3; line-height: 1; margin-bottom: 12px; }
.service-card--green .service-num { color: var(--green-bright); opacity: 0.5; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============ WHY SECTION ============ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.why-left p { font-size: 17px; color: var(--gray-600); margin-bottom: 36px; line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 8px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; border-radius: 8px; background: var(--green-brand);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.why-item strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--gray-900); }
.why-item p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ORBIT VISUAL */
.why-right { display: flex; align-items: center; justify-content: center; }
.why-visual {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(26,122,64,0.2);
  animation: spin 20s linear infinite;
}
.orbit-ring-1 { width: 240px; height: 240px; }
.orbit-ring-2 { width: 380px; height: 380px; animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-center {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-brand), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); font-size: 13px; font-weight: 700;
  box-shadow: 0 0 40px rgba(26,122,64,0.4); z-index: 2;
}
.orbit-item {
  position: absolute; padding: 8px 14px; background: var(--white);
  border: 1px solid var(--green-light); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--green-brand);
  box-shadow: var(--shadow); white-space: nowrap;
}
.orbit-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 90px; right: 20px; }
.orbit-3 { bottom: 90px; right: 0px; }
.orbit-4 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.orbit-5 { bottom: 90px; left: 20px; }
.orbit-6 { top: 90px; left: 20px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--gray-900); }
.testimonials-section .section-tag { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); color: var(--green-light); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: var(--gray-400); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
  grid-column: span 1;
}
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid .testimonial-card:nth-child(4) { grid-column: 1 / 2; }
.testimonials-grid .testimonial-card:nth-child(5) { grid-column: 2 / 3; }

.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(34,197,94,0.3); background: rgba(255,255,255,0.08); }
.testimonial-card--featured { background: linear-gradient(135deg, rgba(26,122,64,0.3), rgba(10,46,26,0.5)); border-color: rgba(34,197,94,0.4); }
.stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-brand), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.testimonial-author span { font-size: 13px; color: var(--gray-400); }

/* ============ CTA BANNER ============ */
.cta-banner { background: linear-gradient(135deg, var(--green-brand), var(--green-dark)); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }

/* ============ FOOTER ============ */
.footer { background: var(--black); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a { font-size: 14px; color: var(--gray-400); transition: color var(--transition); }
.footer-links ul a:hover { color: var(--green-bright); }
.footer-contact p { margin-bottom: 8px; }
.footer-contact a { font-size: 14px; color: var(--gray-400); transition: color var(--transition); }
.footer-contact a:hover { color: var(--green-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom p { font-size: 13px; color: var(--gray-600); text-align: center; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--gray-900); padding: 160px 24px 96px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(26,122,64,0.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.page-hero p { font-size: 18px; color: var(--gray-400); max-width: 620px; margin: 0 auto; line-height: 1.8; }

/* ============ ABOUT PAGE ============ */
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-mission-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.about-mission-text p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-mission-visual { display: flex; flex-direction: column; gap: 20px; }
.mission-card { padding: 28px; border-radius: var(--radius-lg); background: var(--gray-100); border: 1px solid var(--gray-200); }
.mission-card--green { background: var(--green-dark); border-color: var(--green-mid); color: var(--white); }
.mission-card--green p { color: rgba(255,255,255,0.8); }
.mission-year { font-size: 48px; font-weight: 900; color: var(--green-brand); line-height: 1; margin-bottom: 12px; }
.mission-icon { font-size: 20px; margin-bottom: 12px; }
.mission-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

.values-section { background: var(--gray-100); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { padding: 36px 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-200); text-align: center; transition: all var(--transition); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

.diff-section { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-left h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.diff-left p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.comparison-table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.comparison-header { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; padding: 16px 24px; background: var(--gray-900); }
.comparison-header span { font-size: 13px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.comparison-header .highlight-col { color: var(--green-light); }
.comparison-header .vs { text-align: center; color: var(--gray-600); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--gray-200); }
.comparison-row span { padding: 14px 24px; font-size: 14px; color: var(--gray-600); }
.comparison-row .highlight-col { color: var(--gray-900); font-weight: 500; background: var(--green-tint); }

/* ============ SERVICES PAGE ============ */
.dept-header { margin-bottom: 56px; }
.dept-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.dept-header p { font-size: 17px; color: var(--gray-600); max-width: 640px; line-height: 1.8; }
.dept-badge {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.dept-badge--marketing { background: var(--green-tint); color: var(--green-brand); border: 1px solid var(--green-light); }
.dept-badge--tech { background: var(--gray-900); color: var(--green-light); border: 1px solid var(--green-mid); }
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-detail-card { padding: 36px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-200); transition: all var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.service-detail-card--dark { background: var(--gray-900); border-color: var(--gray-800); }
.service-detail-card--dark:hover { border-color: var(--green-mid); }
.service-detail-card--dark h3 { color: var(--white); }
.service-detail-card--dark p { color: var(--gray-400); }
.service-detail-icon { font-size: 36px; margin-bottom: 20px; }
.service-detail-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--gray-900); }
.service-detail-card > p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--gray-200); padding-top: 20px; }
.service-features li { font-size: 14px; color: var(--gray-600); padding-left: 20px; position: relative; }
.service-features li::before { content: '→'; position: absolute; left: 0; color: var(--green-brand); }
.service-features--light { border-top-color: rgba(255,255,255,0.1); }
.service-features--light li { color: var(--gray-400); }
.service-features--light li::before { color: var(--green-light); }

.tech-services-section { background: var(--gray-900); }
.tech-services-section .dept-header h2 { color: var(--white); }
.tech-services-section .dept-header p { color: var(--gray-400); }

.integration-callout { background: var(--green-tint); }
.integration-box { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.integration-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.integration-text p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.flow-diagram { display: flex; flex-direction: column; align-items: center; gap: 0; }
.flow-node { padding: 16px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; text-align: center; width: 100%; max-width: 280px; }
.flow-node--marketing { background: var(--green-brand); color: var(--white); }
.flow-node--crm { background: var(--green-mid); color: var(--white); }
.flow-node--platform { background: var(--green-dark); color: var(--white); }
.flow-node--analytics { background: var(--gray-900); color: var(--white); }
.flow-arrow { font-size: 24px; color: var(--green-brand); padding: 6px 0; }
.flow-arrow--back { font-size: 13px; color: var(--green-brand); font-weight: 600; padding: 8px 0; }

/* ============ CONTACT PAGE ============ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap h2 { font-size: 28px; font-weight: 800; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font); color: var(--gray-900);
  background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-brand); box-shadow: 0 0 0 3px rgba(26,122,64,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--gray-400); text-align: center; margin-top: 4px; }
.form-success { text-align: center; padding: 48px 32px; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-brand); color: var(--white); font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--gray-600); }

.contact-info { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.contact-info-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { font-size: 22px; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail a { font-size: 16px; color: var(--green-brand); font-weight: 500; }
.expect-list { display: flex; flex-direction: column; gap: 24px; }
.expect-item { display: flex; gap: 16px; align-items: flex-start; }
.expect-num { width: 32px; height: 32px; border-radius: 50%; background: var(--green-brand); color: var(--white); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.expect-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.expect-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sector-tags span { padding: 6px 14px; background: var(--green-tint); border: 1px solid var(--green-light); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--green-brand); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 24px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
  .intro-grid, .why-grid, .about-mission-grid, .diff-grid, .integration-box, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-header { grid-template-columns: 1fr; text-align: center; }
  .comparison-header .vs { display: none; }
}
