:root {
  --white: #ffffff;
  --off-white: #f7f7f7;
  --grey-light: #f3f4f6;
  --grey-border: #e5e7eb;
  --grey-text: #6b7280;
  --body-text: #4b5563;
  --heading: #111827;
  --navy: #0a1628;
  --teal: #0284c7;
  --teal-dark: #0369a1;
  --teal-light: #e0f2fe;
  --orange: #f06414;
  --orange-light: #fef0e8;
  --f: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13,31,60,0.07);
  --shadow-md: 0 4px 20px rgba(13,31,60,0.10);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); background: var(--white); color: var(--body-text); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 72px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border); box-shadow: var(--shadow-sm);
}
.nav-logo { font-weight: 800; font-size: 1.2rem; color: var(--heading); text-decoration: none; letter-spacing: -0.01em; }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--grey-text); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  position: relative; background: var(--orange) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 12px 28px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(240,100,20,0.3) !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(240,100,20,0.5); animation: btnPulse 2.5s infinite; pointer-events: none;
}
.nav-cta:hover { background: #d6560e !important; transform: translateY(-1px) !important; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; left: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(2,132,199,0.08) 0%, rgba(240,100,20,0.03) 50%, transparent 70%);
  filter: blur(80px); z-index: 1; animation: floatOrb 20s infinite alternate linear;
}
@keyframes floatOrb { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(10vw,15vh) scale(1.1); } }

.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 64px 52px 64px 72px; background: var(--white); position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); border: 1px solid rgba(2,132,199,0.25);
  padding: 6px 14px; border-radius: 20px; font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 28px; width: fit-content; animation: riseUp .6s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; animation: pulse 1.8s infinite; }

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1) } 50% { opacity:.3; transform:scale(1.7) } }

.hero-title { font-size: clamp(2.8rem,4.5vw,4.2rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.032em; color: var(--heading); margin-bottom: 22px; animation: riseUp .6s .1s ease both; }
.hero-title .teal { color: var(--teal); }
.hero-title .orange { color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--body-text); line-height: 1.78; max-width: 500px; margin-bottom: 36px; animation: riseUp .6s .2s ease both; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: riseUp .6s .3s ease both; }

.btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: var(--white); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em; padding: 16px 36px; border-radius: 50px; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 3px 18px rgba(240,100,20,0.35);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(240,100,20,0.5); animation: btnPulse 2.5s infinite; pointer-events: none;
}
@keyframes btnPulse { 0% { box-shadow: 0 0 0 0 rgba(240,100,20,0.6); } 70% { box-shadow: 0 0 0 16px rgba(240,100,20,0); } 100% { box-shadow: 0 0 0 0 rgba(240,100,20,0); } }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(240,100,20,0.45); background: #d6560e; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px; background: transparent;
  color: var(--teal); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em;
  padding: 14px 34px; border-radius: 50px; border: 2px solid var(--teal); text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.btn-secondary:hover { background: var(--teal-light); color: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; animation: riseUp .6s .4s ease both; }
.hstat {
  background: var(--white); border-radius: 14px; padding: 22px 20px 20px;
  position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(13,31,60,0.09);
  border: 1px solid var(--grey-border); transition: transform .25s, box-shadow .25s; cursor: default;
}
.hstat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), rgba(240,100,20,0.3)); }
.hstat:nth-child(2)::before, .hstat:nth-child(4)::before { background: linear-gradient(90deg, var(--teal), rgba(2,132,199,0.3)); }
.hstat::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 70px; height: 70px; border-radius: 50%; background: rgba(240,100,20,0.06); }
.hstat:nth-child(2)::after, .hstat:nth-child(4)::after { background: rgba(2,132,199,0.06); }
.hstat:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(13,31,60,0.14); }
.hstat .val { font-size: 1.8rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
.hstat .val.o { color: var(--orange); }
.hstat .lbl { font-size: 0.68rem; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; line-height: 1.4; }

@keyframes riseUp { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }

/* Hero Right — 2×2 image grid */
.hero-right { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.hero-img-a, .hero-img-b, .hero-img-c, .hero-img-d { position: relative; overflow: hidden; background: #1a2740; display: flex; align-items: center; justify-content: center; }
.hero-img-a img, .hero-img-b img, .hero-img-c img, .hero-img-d img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-a img { object-position: center 30%; animation: slowZoom1 14s ease infinite alternate; }
.hero-img-b img { object-position: center 35%; animation: slowZoom2 12s ease infinite alternate; }
.hero-img-c img { object-position: center 25%; animation: slowZoom3 16s ease infinite alternate; }
.hero-img-d img { object-position: center 40%; animation: slowZoom4 13s ease infinite alternate; }
@keyframes slowZoom1 { from { transform:scale(1.0) } to { transform:scale(1.06) } }
@keyframes slowZoom2 { from { transform:scale(1.05) } to { transform:scale(1.0) } }
@keyframes slowZoom3 { from { transform:scale(1.0) } to { transform:scale(1.05) } }
@keyframes slowZoom4 { from { transform:scale(1.06) } to { transform:scale(1.0) } }

.hero-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 16px; }
.hero-img-placeholder svg { opacity: 0.3; }

.hero-img-a::after, .hero-img-b::after, .hero-img-c::after, .hero-img-d::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(2,132,199,0.08), rgba(10,22,44,0.30));
  pointer-events: none;
}
.img-label {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: rgba(10,22,44,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(2,132,199,0.38); border-radius: 20px;
  padding: 4px 11px; font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #60c8f0;
}

/* SECTIONS */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 32px 60px; }
.s-label {
  display: inline-block; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-light);
  border: 1px solid rgba(2,132,199,0.25); padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.s-title { font-weight: 800; font-size: clamp(1.8rem,3vw,2.6rem); line-height: 1.12; letter-spacing: -0.025em; color: var(--heading); margin-bottom: 16px; }
.s-desc { font-size: 1rem; color: var(--body-text); max-width: 560px; line-height: 1.78; }

/* PROBLEM */
.problem { background: var(--off-white); position: relative; overflow: hidden; }
.problem::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(240,100,20,0.07) 0%, transparent 70%); pointer-events: none; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 52px; }
.hazard-card { background: #111827; border: 1.5px solid rgba(2,132,199,0.3); border-radius: 16px; padding: 34px; position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.hazard-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), rgba(2,132,199,0.2)); }
.hazard-card::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(2,132,199,0.12), transparent 70%); pointer-events: none; }
.hazard-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #60c8f0; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hazard-title::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #60c8f0; display: inline-block; animation: pulse 1.8s infinite; }
.hazard-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; padding: 8px 10px; border-radius: 8px; transition: background .2s; }
.hazard-item:hover { background: rgba(2,132,199,0.08); }
.hdot { width: 7px; height: 7px; border-radius: 50%; background: #60c8f0; margin-top: 6px; flex-shrink: 0; opacity: 0.8; }
.doc-scatter { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.doc-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; font-size: 0.76rem; color: rgba(255,255,255,0.55); position: relative; overflow: hidden; animation: pillFloat 3s ease-in-out infinite; }
.doc-pill:nth-child(2) { animation-delay:.4s } .doc-pill:nth-child(3) { animation-delay:.8s } .doc-pill:nth-child(4) { animation-delay:1.2s } .doc-pill:nth-child(5) { animation-delay:1.6s } .doc-pill:nth-child(6) { animation-delay:2s }
@keyframes pillFloat { 0%,100% { transform:translateY(0); opacity:0.6; } 50% { transform:translateY(-4px); opacity:1; } }
.key-q { background: rgba(2,132,199,0.07); border: 1px solid rgba(2,132,199,0.25); border-left: 4px solid var(--teal); padding: 20px 24px; border-radius: 8px; font-size: 1.05rem; font-weight: 600; font-style: italic; margin: 24px 0; line-height: 1.7; color: var(--heading); }
.consequence-list { list-style: none; margin-top: 18px; }
.consequence-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--body-text); margin-bottom: 12px; padding: 10px 14px; border-radius: 8px; border: 1px solid transparent; transition: border-color .25s, background .25s; }
.consequence-list li:hover { background: var(--teal-light); border-color: rgba(2,132,199,0.2); }
.consequence-list li::before { content: '⚠'; color: var(--orange); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* PHOTO BREAK */
.photo-break { position: relative; height: 460px; overflow: hidden; }
.photo-break-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.04); transition: transform 0.6s ease; background: #1a2740; }
.photo-break:hover .photo-break-bg { transform: scale(1.0); }
.photo-break-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,22,44,0.88) 0%, rgba(10,22,44,0.60) 45%, rgba(10,22,44,0.20) 100%); display: flex; align-items: center; }
.photo-break-content { padding: 0 80px; max-width: 620px; }
.photo-break-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 18px; }
.photo-break-title { font-weight: 800; font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.15; letter-spacing: -0.025em; color: #fff; margin-bottom: 16px; }
.photo-break-sub { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.72; margin-bottom: 28px; }

/* SOLUTION */
.solution { background: var(--off-white); border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); }
.solution-header { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 52px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feat { background: var(--white); border: 1.5px solid rgba(2,132,199,0.2); border-left: 4px solid var(--teal); border-radius: 12px; padding: 40px 32px; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.feat:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 8px 32px rgba(2,132,199,0.18); }
.feat::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), rgba(240,100,20,0.3)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.feat:hover::after { transform: scaleX(1); }
.feat-icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.feat-title { font-weight: 700; font-size: 0.92rem; color: var(--heading); margin-bottom: 8px; }
.feat-desc { font-size: 0.82rem; color: var(--body-text); line-height: 1.68; }

/* PROOF */
.proof-section { background: var(--off-white); }
.proof-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; margin-bottom: 48px; }
.proof-img { position: relative; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); background: #1a2740; display: flex; align-items: center; justify-content: center; }
.proof-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform .6s ease; }
.proof-img:hover img { transform: scale(1.04); }
.proof-img-placeholder { color: rgba(255,255,255,0.3); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 24px; }
.proof-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(to top, rgba(10,22,40,0.75), transparent); color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.proof-content { background: var(--white); border-radius: 16px; padding: 52px 56px; box-shadow: var(--shadow-md); border: 1px solid var(--grey-border); }
.proof-quote { font-size: 1.35rem; font-weight: 700; color: var(--heading); line-height: 1.55; letter-spacing: -0.015em; position: relative; padding-left: 36px; margin-bottom: 36px; }
.proof-quote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 4.5rem; color: var(--teal); line-height: 1; font-family: Georgia, serif; opacity: 0.85; }
.proof-list { list-style: none; margin-bottom: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.proof-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--body-text); line-height: 1.6; }
.proof-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.proof-source { font-size: 0.78rem; color: var(--grey-text); padding-top: 20px; border-top: 1px solid var(--grey-border); margin-top: 4px; }

/* WORKFLOW */
.workflow { background: var(--off-white); border-top: 1px solid var(--grey-border); }
.wf-steps { display: flex; flex-direction: column; margin-top: 52px; position: relative; }
.wf-steps::before { content: ''; position: absolute; left: 27px; top: 48px; bottom: 48px; width: 2px; background: linear-gradient(180deg, var(--teal) 0%, rgba(2,132,199,0.2) 100%); }
.wf-step { display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--grey-border); align-items: start; opacity: 0; transform: translateX(-16px); transition: opacity .5s, transform .5s; }
.wf-step.visible { opacity: 1; transform: translateX(0); }
.wf-step:last-child { border-bottom: none; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; box-shadow: 0 4px 16px rgba(2,132,199,0.3); }
.step-body { padding-top: 12px; }
.step-body h3 { font-weight: 700; font-size: 1.08rem; color: var(--heading); margin-bottom: 8px; }
.step-body p { font-size: 0.88rem; color: var(--body-text); max-width: 600px; line-height: 1.74; }
.step-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.step-tag { background: var(--teal-light); border: 1px solid rgba(2,132,199,0.25); color: var(--teal-dark); font-size: 0.71rem; font-weight: 700; letter-spacing: 0.05em; padding: 4px 11px; border-radius: 20px; text-transform: uppercase; }

/* STAT STRIP */
.stat-strip { background: var(--teal); }
.stat-strip .section-inner { padding: 52px 60px; }
.stat-row { display: flex; justify-content: center; align-items: center; text-align: center; }
.stat-item { flex: 1; max-width: 320px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.28); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.04em; margin-bottom: 6px; }
.stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(8,22,40,0.72); line-height: 1.4; }

/* INDUSTRIES */
.industries { background: var(--white); border-top: 1px solid var(--grey-border); }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.ind-card { background: var(--white); border: 1.5px solid rgba(2,132,199,0.2); border-left: 4px solid var(--teal); border-radius: 12px; padding: 36px 32px; transition: transform .3s, box-shadow .3s, border-color .3s; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.ind-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 8px 32px rgba(2,132,199,0.18); }
.ind-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }
.ind-name { font-weight: 700; font-size: 0.93rem; color: var(--heading); margin-bottom: 8px; }
.ind-desc { font-size: 0.81rem; color: var(--body-text); line-height: 1.65; }

/* DEPLOY */
.deploy { background: var(--off-white); border-top: 1px solid var(--grey-border); }
.timeline { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 56px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.tl-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.tl-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.82rem; color: var(--teal); margin-bottom: 18px; position: relative; z-index: 1; box-shadow: 0 2px 14px rgba(2,132,199,0.25); }
.tl-day { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.tl-task { font-weight: 700; font-size: 0.83rem; color: var(--heading); margin-bottom: 4px; }
.tl-sub { font-size: 0.73rem; color: var(--grey-text); line-height: 1.5; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #e0f2fe 0%, #fff8f3 100%); text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--grey-border); }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(2,132,199,0.06), transparent), radial-gradient(ellipse 40% 40% at 80% 20%, rgba(240,100,20,0.04), transparent); pointer-events: none; }
.cta-section .section-inner { padding: 100px 60px; }
.cta-title { font-weight: 800; font-size: clamp(2.4rem,5vw,4rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--heading); margin-bottom: 18px; }
.cta-title span { color: var(--teal); }
.cta-sub { font-size: 1.05rem; color: var(--body-text); max-width: 500px; margin: 0 auto 40px; line-height: 1.75; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.cta-section .btn-secondary:hover { background: var(--teal-light); border-color: var(--teal-dark); }

/* FOOTER */
footer { background: #1a2740; padding: 36px 64px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-weight: 800; font-size: 1.1rem; color: var(--white); }
.footer-brand span { color: #60c8f0; }
.footer-links { display: flex; gap: 26px; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #60c8f0; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.4); }

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

@media(max-width:960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 380px; }
  .hero-left { padding: 100px 24px 40px; }
  .section-inner { padding: 32px 24px; }
  .problem-grid, .solution-header, .proof-images { grid-template-columns: 1fr; gap: 36px; }
  .proof-content { padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .timeline::before { display: none; }
  .stat-row { flex-wrap: wrap; }
  .stat-item { border-right: none; flex: 0 0 50%; }
  footer { flex-direction: column; gap: 18px; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .photo-break { height: 300px; }
  .photo-break-content { padding: 0 28px; }
  .proof-list { grid-template-columns: 1fr; }
}

@media(max-width:600px) {
  .features-grid, .industries-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-item { flex: 0 0 100%; }
}

@keyframes modalSlideUp {
  from { opacity:0; transform:translateY(30px) scale(0.98); }
  to { opacity:1; transform:translateY(0) scale(1); }
}
