/* ============================================================
   DONGYUE TEXTILE — Design System
   Colors / Typography / Spacing per brand guideline
   ============================================================ */
:root {
  /* Brand colors */
  --primary: #09A0E3;
  --primary-dark: #036FB7;
  /* Neutrals */
  --white: #FFFFFF;
  --bg: #F7F9FC;
  --light-gray: #EEF2F6;
  --border: #E4E7EC;
  --text-primary: #1F2937;
  --text-secondary: #667085;
  /* Functional */
  --success: #16A34A;
  --warning: #FF8A00;
  --error: #EF4444;
  --info: #09A0E3;
  /* Spacing (8pt grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --space-11: 128px;
  /* Type scale */
  --h1: 48px;
  --h1-lh: 56px;
  --h2: 36px;
  --h2-lh: 44px;
  --h3: 28px;
  --h3-lh: 36px;
  --h4: 22px;
  --h4-lh: 30px;
  --body-lg: 18px;
  --body-lg-lh: 28px;
  --body: 16px;
  --body-lh: 26px;
  --body-sm: 14px;
  --body-sm-lh: 22px;
  --caption: 12px;
  --caption-lh: 18px;
  /* Shape */
  --radius-card: 12px;
  --radius-btn: 8px;
  --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.06);
  /* Layout */
  --container: 1200px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--body);
  line-height: var(--body-lh);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
}
h1 { font-size: var(--h1); line-height: var(--h1-lh); font-weight: 700; }
h2 { font-size: var(--h2); line-height: var(--h2-lh); font-weight: 700; }
h3 { font-size: var(--h3); line-height: var(--h3-lh); font-weight: 600; }
h4 { font-size: var(--h4); line-height: var(--h4-lh); font-weight: 600; }

p { color: var(--text-secondary); }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--space-9) 0; }
.section--alt { background: var(--bg); }
.section--tint { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-7); }
.section-head .kicker {
  display: inline-block;
  font-size: var(--caption);
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  background: rgba(9, 160, 227, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}
.section-head p { margin-top: var(--space-3); }
.section-head--left { text-align: left; margin-left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); }
.btn--secondary { background: transparent; color: var(--primary-dark); border-color: var(--primary-dark); }
.btn--secondary:hover { background: rgba(9,160,227,.08); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--orange { background: var(--warning); color: #fff; }
.btn--orange:hover { background: #e07800; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Topbar ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  font-size: var(--body-sm);
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar__left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item svg { width: 14px; height: 14px; fill: rgba(255,255,255,.75); }
.topbar__right { display: flex; align-items: center; gap: 12px; }
.topbar__lang { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }

/* ===== Header / Nav ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.logo__mark svg { width: 22px; height: 22px; fill: #fff; }
.logo__text { line-height: 1.1; }
.logo__name { font-family: 'Manrope'; font-weight: 800; font-size: 18px; letter-spacing: .5px; color: var(--text-primary); }
.logo__sub { font-size: 11px; color: var(--text-secondary); letter-spacing: .4px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--text-primary); position: relative; padding: 6px 0; }
.nav__link:hover, .nav__link.is-active { color: var(--primary); }
.nav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.nav__cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, rgba(3,60,110,.94) 0%, rgba(9,160,227,.72) 100%), url('../images/hero.jpg') center/cover no-repeat;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-7); align-items: center; }
.hero__kicker {
  display: inline-block; font-size: var(--caption); letter-spacing: 3px; font-weight: 700;
  color: #BFE9FF; text-transform: uppercase; margin-bottom: var(--space-3);
}
.hero h1 { color: #fff; font-size: 52px; line-height: 62px; margin-bottom: var(--space-3); }
.hero__desc { color: rgba(255,255,255,.85); font-size: var(--body-lg); line-height: var(--body-lg-lh); max-width: 560px; margin-bottom: var(--space-5); }
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-7); }
.hero__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.hero__feature { display: flex; gap: 12px; align-items: flex-start; }
.hero__feature-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
}
.hero__feature-icon svg { width: 22px; height: 22px; fill: #fff; }
.hero__feature b { display: block; color: #fff; font-size: 14px; line-height: 1.2; }
.hero__feature span { color: rgba(255,255,255,.75); font-size: 12px; }
.hero__media { position: relative; }
.hero__video-card {
  border-radius: var(--radius-card); overflow: hidden; position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.hero__video-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.hero__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(3,60,110,.35); color: #fff; cursor: pointer; font-weight: 600; font-size: 15px;
}
.hero__play-btn {
  width: 56px; height: 56px; border-radius: 50%; background: var(--warning);
  display: flex; align-items: center; justify-content: center;
}
.hero__play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }

/* ===== Stats bar ===== */
.stats { background: var(--white); border-bottom: 1px solid var(--border); padding: var(--space-6) 0; }
.stats .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.stat { text-align: center; }
.stat__num { font-family: 'Manrope'; font-size: 38px; font-weight: 800; color: var(--primary-dark); line-height: 1.1; }
.stat__label { font-size: var(--body-sm); color: var(--text-secondary); margin-top: 4px; }

/* ===== Product cards ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: var(--space-4); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.product-card__img { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: var(--space-3); }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card h4 { margin-bottom: 6px; }
.product-card p { font-size: var(--body-sm); line-height: var(--body-sm-lh); margin-bottom: var(--space-3); }
.link-more { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.link-more:hover { color: var(--primary-dark); }
.link-more .arrow { transition: transform .2s; }
.link-more:hover .arrow { transform: translateX(4px); }

/* ===== Applications ===== */
.app-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-3); }
.app-item {
  text-align: center; padding: var(--space-4) var(--space-3); border-radius: var(--radius-card);
  background: var(--white); border: 1px solid var(--border); transition: .25s;
}
.app-item:hover { border-color: var(--primary); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.app-item__icon {
  width: 56px; height: 56px; margin: 0 auto var(--space-3); border-radius: 14px;
  background: rgba(9,160,227,.1); display: flex; align-items: center; justify-content: center;
}
.app-item__icon svg { width: 28px; height: 28px; fill: var(--primary-dark); }
.app-item b { font-family: 'Manrope'; font-size: 15px; }

/* ===== Why choose ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: var(--space-6); align-items: center; }
.why-col h4 { margin-bottom: var(--space-3); }
.why-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 15px; color: var(--text-primary); }
.why-list .check {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(22,163,74,.12); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-list .check svg { width: 12px; height: 12px; fill: var(--success); }
.why-media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.why-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-card {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: var(--space-4);
}
.why-card__item { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px dashed var(--border); }
.why-card__item:last-child { border-bottom: none; }
.why-card__num { font-family: 'Manrope'; font-size: 26px; font-weight: 800; color: var(--primary); min-width: 76px; }
.why-card__txt b { display: block; font-size: 15px; }
.why-card__txt span { font-size: var(--body-sm); color: var(--text-secondary); }

/* ===== Process ===== */
.process-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--space-3); }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 22px; right: -14px; width: 16px; height: 2px;
  background: var(--border);
}
.process-step__num {
  width: 44px; height: 44px; margin: 0 auto var(--space-3); border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  font-family: 'Manrope'; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(9,160,227,.28);
}
.process-step b { font-size: 14px; display: block; }

/* ===== Stock band ===== */
.stock { position: relative; color: #fff; overflow: hidden; }
.stock::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,60,110,.95) 0%, rgba(9,160,227,.8) 100%);
}
.stock__img { position: absolute; inset: 0; z-index: -1; }
.stock__img img { width: 100%; height: 100%; object-fit: cover; }
.stock .container { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-7); align-items: center; }
.stock h2 { color: #fff; font-size: 40px; line-height: 48px; margin-bottom: var(--space-3); }
.stock p { color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: var(--space-5); }
.stock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.stock__stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-card); padding: var(--space-4); text-align: center; }
.stock__stat b { display: block; font-family: 'Manrope'; font-size: 30px; font-weight: 800; color: #fff; }
.stock__stat span { font-size: var(--body-sm); color: rgba(255,255,255,.8); }

/* ===== Logos row ===== */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-5) var(--space-7); }
.logo-item {
  font-family: 'Manrope'; font-weight: 800; font-size: 22px; letter-spacing: 1px;
  color: var(--text-secondary); opacity: .75; display: inline-flex; align-items: center; gap: 8px;
}
.logo-item:hover { opacity: 1; color: var(--primary-dark); }
.logo-item svg { width: 26px; height: 26px; fill: currentColor; }
.cert-item {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white);
  padding: 12px 20px; font-weight: 700; font-size: 14px; color: var(--text-primary); line-height: 1.2;
}
.cert-item svg { width: 20px; height: 20px; fill: var(--primary-dark); }
.cert-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.blog-card__img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: var(--space-3); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__tag { font-size: var(--caption); font-weight: 600; letter-spacing: 1px; color: var(--primary-dark); text-transform: uppercase; }
.blog-card h4 { margin: 6px 0 8px; font-size: 19px; line-height: 27px; }
.blog-card p { font-size: var(--body-sm); margin-bottom: var(--space-3); }
.blog-card__date { font-size: var(--caption); color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.blog-card__date svg { width: 13px; height: 13px; fill: var(--text-secondary); }

/* ===== CTA band ===== */
.cta { background: linear-gradient(100deg, var(--primary-dark) 0%, var(--primary) 120%); color: #fff; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: 30px; line-height: 40px; }
.cta p { color: rgba(255,255,255,.85); margin-top: 6px; }
.cta__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { background: #0B1F33; color: rgba(255,255,255,.7); padding-top: var(--space-8); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: var(--space-6); padding-bottom: var(--space-7); }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: var(--space-3); }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__sub { color: rgba(255,255,255,.5); }
.footer__brand p { font-size: var(--body-sm); margin: var(--space-3) 0; color: rgba(255,255,255,.6); }
.footer__col li { margin-bottom: 10px; font-size: var(--body-sm); }
.footer__col a:hover { color: var(--primary); }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: var(--body-sm); color: rgba(255,255,255,.65); }
.footer__contact svg { width: 16px; height: 16px; fill: var(--primary); flex-shrink: 0; margin-top: 4px; }
.footer__socials { display: flex; gap: var(--space-2); margin-top: var(--space-3); }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: .2s;
}
.footer__socials a:hover { background: var(--primary); }
.footer__socials svg { width: 16px; height: 16px; fill: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--space-3) 0; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; font-size: var(--body-sm); }
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--primary); }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(100deg, rgba(3,60,110,.94), rgba(9,160,227,.78)), url('../images/hero.jpg') center/cover no-repeat;
  color: #fff; padding: var(--space-8) 0;
}
.page-hero h1 { color: #fff; font-size: 42px; line-height: 52px; margin-bottom: var(--space-3); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; font-size: var(--body-sm); color: rgba(255,255,255,.75); margin-bottom: var(--space-3); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .6; }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-6); }
.form-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-group { margin-bottom: var(--space-3); }
.form-group label { display: block; font-size: var(--body-sm); font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text-primary); background: var(--white);
  transition: border .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(9,160,227,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-card { background: var(--primary-dark); color: #fff; border-radius: var(--radius-card); padding: var(--space-5); }
.contact-info-card h4 { color: #fff; margin-bottom: var(--space-4); }
.contact-info-card li { display: flex; gap: 14px; padding: var(--space-3) 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card svg { width: 20px; height: 20px; fill: #8FD8F7; flex-shrink: 0; margin-top: 3px; }
.contact-info-card b { display: block; color: #fff; font-size: 15px; }
.contact-info-card span { font-size: var(--body-sm); color: rgba(255,255,255,.75); }

/* ===== Tables (spec) ===== */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.spec-table th, .spec-table td { padding: 14px 16px; text-align: left; font-size: var(--body-sm); border-bottom: 1px solid var(--border); }
.spec-table th { background: var(--bg); font-family: 'Manrope'; font-weight: 600; color: var(--text-primary); }
.spec-table tr:last-child td { border-bottom: none; }

/* ===== Two column ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.split__media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.feature-list .check { margin-top: 3px; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  :root { --h1: 38px; --h1-lh: 46px; --h2: 30px; --h2-lh: 38px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .stats .container { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .app-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); row-gap: var(--space-5); }
  .process-step:nth-child(4)::after { display: none; }
  .stock .container { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-grid, .split { grid-template-columns: 1fr; }
  .nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 80px 32px 32px; box-shadow: -8px 0 32px rgba(0,0,0,.1); transition: right .3s ease;
  }
  .nav.is-open { right: 0; }
  .nav__link { width: 100%; font-size: 16px; padding: 10px 0; }
  .nav__cta { margin: 12px 0 0; }
  .nav-toggle { display: block; }
}
@media (max-width: 768px) {
  .topbar__left { display: none; }
  .topbar .container { justify-content: center; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .blog-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--space-7) 0; }
  .hero { padding: var(--space-7) 0; }
  .hero h1 { font-size: 32px; line-height: 40px; }
  .cta .container { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__features { grid-template-columns: repeat(2, 1fr); }
  .stock h2 { font-size: 30px; line-height: 38px; }
}
