/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --green-dark: #0A2A1F;
  --green: #1A6B4A;
  --green-mid: #218A5E;
  --green-light: #7ECBA5;
  --green-tint: #F0F8F4;
  --white: #ffffff;
  --gray-100: #F7F7F5;
  --gray-200: #EBEBEB;
  --gray-500: #777777;
  --gray-800: #2A2A2A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ── CONTAINER ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.full-width { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ── EYEBROW ── */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--gray-800); margin-bottom: 16px; line-height: 1.2; }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all 0.3s; }
.nav.scrolled { background: var(--green-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); padding: 12px 0; }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-size: 16px; font-weight: 800; color: white; letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { background: var(--green) !important; color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero { min-height: 100vh; background: var(--green-dark); display: flex; align-items: center; padding: 100px 24px 60px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(26,107,74,0.4) 0%, transparent 60%); pointer-events: none; }
.hero-content { max-width: 560px; margin-right: 60px; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(44px, 6vw, 72px); color: white; line-height: 1.1; margin-bottom: 24px; }
.hero-headline em { color: var(--green-light); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 12px; color: var(--green-light); margin-top: 4px; font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-visual { position: relative; z-index: 1; flex-shrink: 0; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; width: 300px; backdrop-filter: blur(12px); }
.hero-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.hero-card-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.hm { padding: 14px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; letter-spacing: 1px; }
.hm-scm { background: rgba(26,107,74,0.5); color: #9EDBBE; border: 1px solid rgba(126,203,165,0.2); }
.hm-fin { background: rgba(10,61,98,0.5); color: #90C6E8; border: 1px solid rgba(144,198,232,0.2); }
.hm-hcm { background: rgba(74,35,90,0.5); color: #C9A0DC; border: 1px solid rgba(201,160,220,0.2); }
.hm-oic { background: rgba(125,102,8,0.5); color: #F0CC6A; border: 1px solid rgba(240,204,106,0.2); }
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.5; }
.hero-card-badge { background: var(--green); color: white; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 20px; text-align: center; }

/* ── TRUST BAR ── */
.trust { background: var(--green); padding: 20px 0; }
.trust .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-items { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-items span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; }

/* ── SERVICES ── */
.services { padding: 96px 0; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: var(--gray-100); border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-200); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.scm-icon { background: rgba(26,107,74,0.1); color: var(--green); }
.fin-icon { background: rgba(10,61,98,0.1); color: #1A5276; }
.hcm-icon { background: rgba(74,35,90,0.1); color: #4A235A; }
.oic-icon { background: rgba(125,102,8,0.1); color: #7D6608; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--gray-800); }
.service-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.service-list li { font-size: 13px; color: var(--gray-500); padding: 5px 0; padding-left: 16px; position: relative; border-bottom: 1px solid var(--gray-200); }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-size: 11px; top: 6px; }

/* ── WHY ── */
.why { padding: 96px 0; background: var(--green-dark); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .eyebrow { color: var(--green-light); }
.why-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: white; margin-bottom: 24px; line-height: 1.2; }
.why-left p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.why-left .btn-primary { margin-top: 16px; }
.compare-table { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.compare-head, .compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
.compare-head { background: var(--green); padding: 14px 16px; }
.compare-head div { font-size: 12px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; }
.compare-row { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.03); transition: background 0.2s; }
.compare-row:hover { background: rgba(255,255,255,0.06); }
.compare-row:last-child { border-bottom: none; }
.compare-row div { font-size: 13px; color: rgba(255,255,255,0.65); }
.compare-row div:first-child { font-weight: 600; color: rgba(255,255,255,0.85); }
.ours { color: var(--green-light) !important; font-weight: 700 !important; }
.compare-head .ours { color: white !important; }

/* ── PROCESS ── */
.process { padding: 96px 0; background: var(--green-tint); }
.process-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; }
.process-step { flex: 1; min-width: 160px; max-width: 200px; text-align: center; padding: 0 16px; }
.step-num { font-size: 36px; font-weight: 800; color: var(--green); font-family: 'Playfair Display', serif; margin-bottom: 12px; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.process-arrow { font-size: 24px; color: var(--green-light); padding-top: 24px; flex-shrink: 0; }

/* ── INDUSTRIES ── */
.industries { padding: 96px 0; background: white; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.industry-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.25s; background: white; }
.industry-card:hover { border-color: var(--green-light); background: var(--green-tint); transform: translateY(-2px); }
.ind-icon { font-size: 28px; margin-bottom: 14px; }
.industry-card h4 { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── BLOG ── */
.blog { padding: 96px 0; background: var(--gray-100); }
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
.blog-card { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-200); transition: all 0.25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card.featured { background: var(--green-dark); border-color: transparent; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); background: var(--green-tint); padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 16px; width: fit-content; }
.featured .blog-tag { background: rgba(255,255,255,0.1); color: var(--green-light); }
.blog-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; line-height: 1.3; flex: 1; }
.featured h3 { color: white; }
.blog-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
.featured p { color: rgba(255,255,255,0.65); }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }
.featured .blog-meta { color: rgba(255,255,255,0.4); }
.blog-link { font-size: 14px; font-weight: 600; color: var(--green); margin-top: auto; }
.featured .blog-link { color: var(--green-light); }

/* ── CONTACT ── */
.contact { padding: 96px 0; background: var(--green-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; }
.contact-left .eyebrow.light { color: var(--green-light); }
.contact-left h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: white; margin-bottom: 20px; line-height: 1.2; }
.contact-left p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.ci-icon { font-size: 18px; flex-shrink: 0; }
.contact-item span:last-child { font-size: 14px; color: rgba(255,255,255,0.75); }

.contact-form { background: white; border-radius: 16px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--gray-100); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: white; }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 12px; }

/* ── FOOTER ── */
.footer { background: #050F0A; padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-text { color: white; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 12px; line-height: 1.6; }
.footer-links h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── WHY POINTS ── */
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; align-items: flex-start; gap: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; transition: background 0.2s; }
.why-point:hover { background: rgba(255,255,255,0.07); }
.why-num { font-size: 24px; font-weight: 800; color: var(--green-light); font-family: 'Playfair Display', serif; flex-shrink: 0; min-width: 36px; }
.why-point h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.why-point p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 24px 60px; }
  .hero-content { margin-right: 0; margin-bottom: 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 340px; }
  .hero-card { width: 100%; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--green-dark); padding: 24px; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .trust .container { flex-direction: column; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
}
