/* ==========================================================================
   1. VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
  --primary: #4B5C76;
  --deep: #4B5C76;
  --orange: #F15A29;
  --orange2: #FF9F55;
  --white: #fff;
  --soft: #F1F4F8;
  --ink: #172B46;
  --muted: #4B5C76;
  --line: rgba(75, 92, 118, .16);
  --shadow: 0 14px 35px rgba(23, 43, 70, .1);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; color: var(--ink); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin: auto; }

/* ==========================================================================
   2. HEADER, NAV, & HERO
   ========================================================================== */
.header { position: absolute; top: 0; left: 0; width: 100%; z-index: 10; padding: 24px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 155px; }
.nav nav { display: flex; align-items: center; gap: 34px; color: #fff; font-size: 14px; }
.nav nav a:hover { color: var(--orange2); }
.nav-cta { background: var(--orange); padding: 13px 21px; border-radius: 8px; font-weight: 700; }
.menu { display: none; background: none; border: 0; color: #fff; font-size: 24px; }

.hero { 
  min-height: 720px; overflow: hidden; position: relative; color: #fff; 
  background: radial-gradient(circle at 75% 30%, rgba(255,159,85,.1), transparent 30%), linear-gradient(135deg, var(--primary), var(--deep)); 
}
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 65px 65px; }
.hero-inner { min-height: 720px; padding-top: 95px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 25px; }
.eyebrow, .kicker { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--orange2); }
h1 { font-size: clamp(44px, 5vw, 72px); line-height: 1.05; letter-spacing: -.045em; margin: 18px 0 22px; }
.hero-copy p { max-width: 570px; font-size: 18px; color: rgba(255,255,255,.85); }

/* ==========================================================================
   3. VISUALS & GRAPHICS (Map, Growth, Donut)
   ========================================================================== */
.buttons { display: flex; gap: 15px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; gap: 22px; padding: 14px 24px; border-radius: 8px; font-weight: 700; transition: .25s; }
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--orange); color: #fff; }
.outline { border: 1px solid rgba(255,255,255,.75); color: #fff; }
.dark { background: var(--deep); color: #fff; }

.visual { position: relative; height: 550px; }
.world { position: absolute; inset: 25px -70px 0 -20px; overflow: hidden; }
.map { position: absolute; inset: 35px 5% 25%; opacity: .22; background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 2px); background-size: 10px 10px; mask-image: radial-gradient(ellipse, black 35%, transparent 72%); }
.pin { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--orange2); box-shadow: 0 0 20px 7px rgba(255,159,85,.65); }
.p1 { top: 35%; left: 36%; } .p2 { top: 43%; left: 52%; } .p3 { top: 28%; left: 69%; } .p4 { top: 52%; left: 76%; }

.growth { position: absolute; right: 0; bottom: 35px; width: 76%; height: 300px; display: flex; align-items: end; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.2); }
.growth b { flex: 1; background: linear-gradient(to top, rgba(255,255,255,.05), rgba(255,255,255,.25)); }
.growth b:nth-child(1) { height: 18%; } .growth b:nth-child(2) { height: 28%; } .growth b:nth-child(3) { height: 38%; } .growth b:nth-child(4) { height: 47%; } .growth b:nth-child(5) { height: 58%; } .growth b:nth-child(6) { height: 70%; } .growth b:nth-child(7) { height: 84%; }
.trend { position: absolute; left: 3%; bottom: 15%; width: 91%; height: 65%; border-top: 3px solid var(--orange2); transform: skewY(-20deg); filter: drop-shadow(0 0 5px rgba(255,159,85,.55)); }

.glass { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.18); background: rgba(58,78,105,.65); backdrop-filter: blur(12px); border-radius: 14px; box-shadow: 0 20px 40px rgba(20,35,54,.15); }
.market { right: 2%; bottom: 185px; width: 300px; padding: 22px; }
.market-row { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.donut { width: 105px; height: 105px; border-radius: 50%; background: conic-gradient(#71849e 0 105deg, var(--orange) 105deg 190deg, #9ba8b9 190deg 270deg, var(--orange2) 270deg); position: relative; }
.donut:after { content: ""; position: absolute; inset: 25px; border-radius: 50%; background: var(--deep); }
.market ul { list-style: none; display: grid; gap: 8px; font-size: 11px; color: rgba(255,255,255,.82); }
.finding { right: 2%; bottom: 30px; width: 300px; padding: 22px; }
.finding small { display: block; font-size: 10px; color: rgba(255,255,255,.7); letter-spacing: .08em; }
.finding strong { display: block; color: var(--orange2); font-size: 20px; margin: 5px 0; }
.finding p { font-size: 12px; color: rgba(255,255,255,.8); }

/* ==========================================================================
   4. CONTENT SECTIONS (Cards, Steps, Insights, Value)
   ========================================================================== */
.section { padding: 100px 0; }
.section-light { background: #fff; }
.section-soft { background: var(--soft); }
.intro-grid, .about-grid, .process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: center; }
.intro h2, .heading h2, .process h2, .about h2, .contact h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.04em; margin-top: 8px; }
.intro p, .heading p, .process p, .about p, .contact p { color: var(--muted); margin-top: 17px; }

.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 20px; }
.step { text-align: center; }
.icon { width: 62px; height: 62px; display: grid; place-items: center; color: #fff; border-radius: 50%; font-size: 26px; margin: 0 auto 15px; }
.square { border-radius: 12px; margin: 0 0 20px; }
.blue { background: var(--primary); }
.orange { background: var(--orange); }

.cards { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.card, .insight { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.card { padding: 30px; }
.card h3 { font-size: 22px; }
.card p { color: var(--muted); margin: 10px 0 18px; }
.card ul { list-style: none; display: grid; gap: 8px; margin-bottom: 22px; }
.card li { font-size: 13px; color: var(--muted); }
.card li:before { content: '✓'; color: var(--primary); font-weight: 700; margin-right: 8px; }
.card a, .insight a { font-size: 13px; font-weight: 700; color: var(--primary); }
.orange-text { color: var(--orange)!important; }

.process { background: var(--primary); color: #fff; padding: 90px 0; }
.process-list { display: flex; align-items: center; justify-content: center; gap: 12px; }
.process-item { text-align: center; min-width: 76px; }
.process-item i { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-style: normal; font-size: 23px; margin: 0 auto 8px; }
.process-item.active i { background: var(--orange); border-color: var(--orange); }
.process-item b { display: block; font-size: 11px; color: rgba(255,255,255,.55); }
.process-item span { font-size: 11px; font-weight: 700; line-height: 1.3; }
.process-list em { color: rgba(255,255,255,.5); }

.insight { overflow: hidden; }
.insight-img { height: 155px; position: relative; background: linear-gradient(135deg, #234c6a, #1c2940); }
.insight-img:after { content: ""; position: absolute; left: 8%; right: 8%; top: 52%; height: 2px; background: var(--orange2); transform: rotate(-12deg); }
.insight-img span { position: absolute; z-index: 1; left: 12px; bottom: 10px; background: #fff; color: var(--primary); font-size: 8px; font-weight: 800; padding: 5px 7px; border-radius: 4px; }
.perfume { background: linear-gradient(135deg, #49305b, #1f233d); }
.camera { background: linear-gradient(135deg, #173d5e, #202c42); }
.field { background: linear-gradient(135deg, #667a82, #2d4855); }
.insight-body { padding: 18px; }
.insight-body h3 { font-size: 17px; }
.insight-body p { font-size: 13px; min-height: 55px; margin: 8px 0 14px; }

.value { background: #fff1e9; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.value-grid article { text-align: center; }
.value-grid i { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 15px; background: #fff; border-radius: 12px; color: var(--orange); font-style: normal; font-size: 24px; }
.value-grid h3 { font-size: 17px; }
.value-grid p { color: var(--muted); font-size: 13px; margin-top: 8px; }

/* ==========================================================================
   5. FOOTER, CONTACT, & RESPONSIVE
   ========================================================================== */
.about { background: var(--deep); color: #4B5C76; padding: 90px 0; }
.about p { color: rgba(255,255,255,.76); }
.about .btn { margin-top: 25px; }
.illustration { height: 260px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; position: relative; overflow: hidden; }
.screen { position: absolute; left: 25%; top: 45px; width: 48%; height: 110px; border: 2px solid rgba(255,255,255,.4); border-radius: 8px; }
.screen:after { content: ""; position: absolute; left: 15%; right: 15%; bottom: 20px; height: 45px; border-top: 2px solid var(--orange2); transform: skewY(-15deg); }
.person { position: absolute; bottom: 28px; width: 58px; height: 90px; border: 2px solid rgba(255,255,255,.45); border-radius: 40px 40px 10px 10px; }
.person.one { left: 12%; }
.person.two { right: 12%; }

.contact { padding: 48px 0; background: var(--orange); color: #fff; }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact p { color: rgba(255,255,255,.85); }
.footer { background: var(--deep); color: rgba(255,255,255,.72); padding: 60px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; }
.footer img { width: 120px; margin-bottom: 10px; }
.footer p, .footer a, .footer span { font-size: 12px; }
.footer h4 { color: #fff; font-size: 12px; text-transform: uppercase; margin-bottom: 10px; }
.footer div > div { display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { color: var(--orange2); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 20px; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s; }
.reveal.show { opacity: 1; transform: none; }

@media(max-width:1100px) {
  .hero-inner, .intro-grid, .process-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 80px; }
  .three, .four { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:760px) {
  .container { width: calc(100% - 32px); }
  .menu { display: block; }
  .nav nav { display: none; position: absolute; top: 75px; left: 16px; right: 16px; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; background: var(--deep); border-radius: 12px; }
  .nav nav.open { display: flex; }
  .nav nav a { padding: 12px; }
  .nav-cta { text-align: center; }
  .hero-inner { padding-top: 125px; padding-bottom: 50px; }
  .hero h1 { font-size: 40px; }
  .buttons { flex-direction: column; }
  .visual { height: 430px; }
  .world { inset: 0 -70px; }
  .market, .finding { right: 0; width: 280px; }
  .market { bottom: 150px; }
  .finding { bottom: 10px; }
  .steps { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); text-align: center; }
  .three, .four, .value-grid, .footer-grid { grid-template-columns: 1fr; }
  .process-list { overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; }
  .process-list em { flex: 0 0 25px; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .heading { align-items: flex-start; flex-direction: column; }
}