:root {
  --dark-teal: #004149;
  --teal: #00A486;
  --bright-teal: #0EA49A;
  --light-teal: #00C49B;
  --aws-orange: #FF9900;
  --white: #FFFFFF;
  --off-white: #F2F2F2;
  --light-gray: #E7E6E6;
  --dark-gray: #333333;
  --black: #000000;
  --gradient: linear-gradient(135deg, #004149, #00A486);
  --font: 'Proxima Nova', Arial, Helvetica, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--dark-gray); line-height: 1.75; font-size: 18px; font-weight: 400; }

/* Teal accent bar at top */
body::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--gradient);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

a { text-decoration: none; color: var(--teal); transition: color .3s; }
a:hover { color: var(--bright-teal); }
h1,h2,h3,h4,h5 { color: var(--dark-teal); line-height: 1.2; }
h1 { font-weight: 900; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
img { max-width: 100%; }

/* Layout */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 110px 0; }

/* Navigation */
nav {
  position: fixed; top: 4px; width: 100%; background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--light-gray);
  z-index: 100; padding: 0;
}
nav .wrap {
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--dark-gray); font-size: .9rem; font-weight: 600;
  letter-spacing: .3px; transition: color .3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 10px 28px; border-radius: 6px; font-weight: 700;
  transition: all .3s;
}
.nav-cta:hover { background: var(--bright-teal); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,164,134,.3); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark-teal); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px; position: relative; overflow: hidden;
  background: var(--white);
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: -100px; bottom: 0;
  width: 45%; background: linear-gradient(160deg, rgba(0,164,134,.04) 0%, rgba(0,65,73,.06) 100%);
  border-radius: 0 0 0 120px; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-content .overline {
  display: inline-block; color: var(--teal); font-size: .8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
  padding: 6px 16px; background: rgba(0,164,134,.08); border-radius: 4px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--teal); }
.hero-content > p {
  font-size: 1.25rem; font-weight: 300; color: #555;
  max-width: 540px; margin-bottom: 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 6px; font-weight: 700;
  font-size: .95rem; transition: all .3s; border: none; cursor: pointer;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px rgba(0,164,134,.25);
}
.btn-primary:hover {
  background: var(--bright-teal); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,164,134,.35);
}
.btn-outline {
  border: 2px solid var(--dark-teal); color: var(--dark-teal);
  background: transparent;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-graphic {
  width: 100%; max-width: 460px; aspect-ratio: 1;
  position: relative;
}
.hero-graphic .orbit {
  position: absolute; inset: 0; border: 2px dashed rgba(0,164,134,.15);
  border-radius: 50%; animation: spin 40s linear infinite;
}
.hero-graphic .orbit:nth-child(2) {
  inset: 15%; animation-duration: 30s; animation-direction: reverse;
  border-color: rgba(0,65,73,.1);
}
.hero-graphic .orbit:nth-child(3) {
  inset: 30%; animation-duration: 20s;
}
.hero-graphic .center-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; background: var(--gradient); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 48px rgba(0,65,73,.25);
}
.hero-graphic .center-badge svg { width: 56px; height: 56px; }
.hero-graphic .float-badge {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: 12px 18px; box-shadow: 0 8px 28px rgba(0,0,0,.08);
  font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.hero-graphic .float-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-badge.fb1 { top: 8%; left: -10%; animation: floatBadge 4s ease-in-out infinite; }
.float-badge.fb2 { top: 15%; right: -5%; animation: floatBadge 4s ease-in-out infinite .5s; }
.float-badge.fb3 { bottom: 15%; left: -5%; animation: floatBadge 4s ease-in-out infinite 1s; }
.float-badge.fb4 { bottom: 8%; right: -10%; animation: floatBadge 4s ease-in-out infinite 1.5s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Section styling */
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.overline {
  color: var(--teal); font-size: .75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -1px;
}
.section-head p {
  font-size: 1.1rem; color: #666; max-width: 640px;
  margin-top: 16px; font-weight: 300;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Stats bar */
.stats-bar {
  background: var(--off-white); padding: 64px 0; border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--dark-teal); line-height: 1;
}
.stat-item .stat-number .counter-suffix { font-size: .7em; }
.stat-item .stat-label {
  font-size: .9rem; color: #777; margin-top: 8px; font-weight: 400;
}

/* Process / Roadmap */
.roadmap-section { background: var(--white); }
.roadmap-phases {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative; margin-top: 48px;
}
.roadmap-phases::before {
  content: ''; position: absolute; top: 56px; left: 5%; right: 5%;
  height: 3px; background: var(--gradient); z-index: 0;
}
.phase {
  text-align: center; position: relative; z-index: 1;
  padding: 0 12px;
}
.phase-number {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--teal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
  box-shadow: 0 8px 28px rgba(0,164,134,.12);
  transition: all .4s;
}
.phase:hover .phase-number {
  background: var(--gradient); border-color: transparent;
}
.phase:hover .phase-number svg { stroke: var(--white); }
.phase:hover .phase-number .pnum { color: var(--white); }
.phase-number svg { width: 36px; height: 36px; stroke: var(--teal); transition: stroke .4s; }
.phase-number .pnum {
  font-size: .65rem; font-weight: 700; color: var(--teal); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 2px; transition: color .4s;
}
.phase h3 { font-size: 1.15rem; margin-bottom: 12px; }
.phase p { font-size: .88rem; color: #666; line-height: 1.7; }

/* Capability cards */
.capabilities-section { background: var(--off-white); }
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.cap-card {
  background: var(--white); border-radius: 12px;
  border-left: 4px solid var(--teal);
  padding: 40px 36px; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all .4s;
}
.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.cap-card .cap-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(0,164,134,.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 24px;
}
.cap-card .cap-icon svg { width: 28px; height: 28px; stroke: var(--teal); }
.cap-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.cap-card p { font-size: .95rem; color: #666; margin-bottom: 20px; }
.cap-card .cap-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cap-tag {
  background: rgba(0,164,134,.07); color: var(--teal); padding: 4px 12px;
  border-radius: 4px; font-size: .75rem; font-weight: 600;
}

/* Metrics */
.metrics-section { background: var(--white); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.metric-card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-left: 4px solid var(--teal); border-radius: 12px;
  padding: 36px 40px; display: flex; gap: 28px; align-items: flex-start;
  transition: all .4s;
}
.metric-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.metric-value {
  font-size: 2.4rem; font-weight: 900; color: var(--teal);
  line-height: 1; white-space: nowrap; min-width: 100px;
}
.metric-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.metric-card p { font-size: .9rem; color: #777; line-height: 1.6; }
.metric-client {
  font-size: .75rem; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 8px;
}

/* Customers & Partners */
.customers-section { background: var(--white); }
.customer-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 48px; margin-bottom: 64px;
}
.customer-logo {
  font-size: 1.5rem; font-weight: 800; color: var(--dark-teal);
  opacity: .35; transition: opacity .3s; letter-spacing: -1px;
}
.customer-logo:hover { opacity: .7; }

.partner-badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  padding-top: 48px; border-top: 1px solid var(--light-gray);
}
.partner-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 20px 28px;
  transition: all .3s;
}
.partner-badge:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.partner-badge svg { width: 36px; height: 36px; flex-shrink: 0; }
.partner-badge .badge-text { font-size: .85rem; font-weight: 700; color: var(--dark-teal); line-height: 1.3; }
.partner-badge .badge-text span { display: block; font-size: .72rem; font-weight: 400; color: #888; }

/* AWS Competencies */
.competencies-section { background: var(--off-white); }
.comp-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.comp-tag {
  background: var(--white); border: 1px solid var(--light-gray);
  padding: 10px 22px; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: var(--dark-teal);
  transition: all .3s;
}
.comp-tag:hover {
  background: var(--teal); color: var(--white);
  border-color: var(--teal); transform: translateY(-2px);
}

/* FAQ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; list-style: none; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; font-family: var(--font); font-size: 1.05rem;
  font-weight: 600; color: var(--dark-teal); text-align: left;
  transition: color .3s; gap: 16px;
}
.faq-question dt { flex: 1; }
.faq-question:hover { color: var(--teal); }
.faq-question svg {
  width: 20px; height: 20px; stroke: var(--teal); flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-answer p {
  padding: 0 0 28px; font-size: .95rem; color: #666; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* CTA section */
.cta-section {
  background: var(--gradient); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -40%; left: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-section .wrap { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white); font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1px; margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.75); font-size: 1.15rem;
  max-width: 560px; margin: 0 auto 40px; font-weight: 300;
}
.cta-section .btn-white {
  background: var(--white); color: var(--dark-teal);
  padding: 18px 42px; border-radius: 6px; font-weight: 700;
  font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; border: none; cursor: pointer;
}
.cta-section .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  color: var(--teal);
}

/* Badge trust bar */
.badge-trust-bar {
  background: var(--off-white);
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.trust-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.trust-subtitle {
  font-size: .85rem; color: #888; margin-bottom: 32px; max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.trust-badges {
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: wrap;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--light-gray);
  padding: 24px 40px; z-index: 99;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0; color: var(--dark-gray);
  font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--light-gray);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--teal); }

/* Warum Storm Reply */
.why-storm{background:var(--white);padding:110px 0}
.why-storm-grid{display:grid;grid-template-columns:240px 1fr;gap:64px;align-items:center}
.why-storm-badge{display:flex;justify-content:center;align-items:center}
.why-storm-badge img{width:200px;height:200px;object-fit:contain;filter:drop-shadow(0 8px 24px rgba(0,65,73,.1))}
.why-storm-content .overline{margin-bottom:14px}
.why-storm-content h2{font-size:clamp(1.7rem,3vw,2.4rem);margin-bottom:6px;letter-spacing:-.5px;font-weight:800}
.why-storm-content p{font-size:1.02rem;color:#666;line-height:1.8;margin-bottom:16px}
.why-storm-facts{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px}
.why-storm-fact{padding:18px 20px;border-radius:8px;background:var(--off-white);border:1px solid var(--light-gray);transition:all .3s ease}
.why-storm-fact:hover{border-color:rgba(0,164,134,.2);box-shadow:0 4px 16px rgba(0,0,0,.06)}
.why-storm-fact strong{display:block;font-size:.95rem;font-weight:700;color:var(--dark-teal);margin-bottom:2px}
.why-storm-fact span{font-size:.82rem;color:#888}

/* Responsive */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-graphic { max-width: 340px; margin: 0 auto; }
  .roadmap-phases { grid-template-columns: 1fr; gap: 48px; }
  .roadmap-phases::before { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .customer-logos { gap: 28px; }
  .partner-badges { flex-direction: column; align-items: center; }
  .hero::after { width: 100%; right: 0; border-radius: 0; }
  .why-storm-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .why-storm-badge img { width: 160px; height: 160px; }
  .why-storm-facts { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

