/* ============================================
   KINVIEW PROJECTS (USA) INC. — MAIN STYLESHEET
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2332;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- VARIABLES --- */
:root {
  --navy:        #0d1f3c;
  --navy-mid:    #1b3060;
  --navy-light:  #1e3a6e;
  --accent:      #e07b1a;
  --accent-dark: #c46a0f;
  --accent-light:#f5a23b;
  --light-bg:    #f4f7fb;
  --mid-bg:      #e8edf5;
  --white:       #ffffff;
  --text-dark:   #1a2332;
  --text-mid:    #3d5066;
  --text-light:  #6e84a0;
  --border:      #d1dce9;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg:   0 12px 48px rgba(13,31,60,0.16);
  --transition:  0.25s ease;
}

/* --- UTILITIES --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.accent { color: var(--accent); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224,123,26,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline-footer {
  background: transparent;
  color: #a8bdd4;
  border: 2px solid #3a5070;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: all var(--transition);
}
.btn-outline-footer:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}
.logo-img {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}
.logo-img-footer {
  height: 24px;
  width: 24px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.52rem;
  color: var(--accent-light);
  letter-spacing: 0.09em;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-nav:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  position: relative;
  background: url('hero-home.jpg?v=2') center center / cover no-repeat;
  background-color: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,25,50,0.82) 0%, rgba(10,25,50,0.60) 50%, rgba(10,25,50,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 28px;
}
.trust-icon { font-size: 1.1rem; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* --- SECTIONS --- */
.section { padding: 90px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--navy); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header-light { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--accent-light); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header-light .section-title { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.card-link:hover { color: var(--accent-dark); }

/* --- ADVANTAGES GRID --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}
.advantage-item {
  padding: 10px 0;
}
.adv-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(224,123,26,0.25);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.advantage-item h4 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.advantage-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* --- SPLIT LAYOUT --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-text p {
  font-size: 1.0rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.split-text .section-title { text-align: left; }

.split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.stat-box:hover { transform: translateY(-3px); }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2d5a 100%);
  padding: 80px 24px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-breadcrumb {
  font-size: 0.82rem;
  color: var(--accent-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.page-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-breadcrumb a:hover { color: var(--white); }

/* --- ABOUT PAGE --- */
.mission-box {
  background: var(--navy);
  border-left: 5px solid var(--accent);
  padding: 36px 40px;
  border-radius: 0 12px 12px 0;
  margin: 0 auto;
  max-width: 760px;
}
.mission-box p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.90);
  font-style: italic;
  line-height: 1.7;
}

.ownership-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.ownership-table th, .ownership-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.ownership-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.ownership-table tr:nth-child(even) td { background: var(--light-bg); }
.ownership-table td:first-child { font-weight: 600; color: var(--navy); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* --- SERVICE HERO IMAGES --- */
.service-hero-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,60,0.65) 0%, rgba(13,31,60,0.20) 70%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px 32px;
}
.service-hero-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.40);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  line-height: 1.3;
}

/* --- SERVICES PAGE --- */
.service-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-label {
  position: sticky;
  top: 100px;
}
.service-label .service-big-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.service-label h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.service-label p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-detail h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 28px;
}
.service-detail h3:first-child { margin-top: 0; }
.service-detail p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.deliverables-list {
  list-style: none;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.deliverables-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.deliverables-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- INDUSTRIES PAGE --- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.industry-card-header {
  background: var(--navy);
  padding: 28px;
  text-align: center;
}
.industry-card-header .ind-icon { font-size: 2.4rem; }
.industry-card h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
  line-height: 1.3;
}
.industry-card-body {
  padding: 28px;
}
.industry-card-body p {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--mid-bg);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--navy);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- FOOTER --- */
.site-footer {
  background: #09172d;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.logo-footer .logo-main { font-size: 0.95rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-web a {
  font-size: 0.9rem;
  color: var(--accent-light);
  font-weight: 500;
}
.footer-web a:hover { color: var(--accent); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 18px;
}
.footer-links ul li {
  margin-bottom: 11px;
}
.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--accent-light); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.30);
  text-align: center;
}

/* --- PROCESS STEPS --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.process-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-text .section-title { text-align: center; }
  .split-text { text-align: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-section-inner { grid-template-columns: 1fr; }
  .service-label { position: static; }
  .industry-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .service-hero-img { height: 160px; }
  .service-hero-overlay { padding: 14px 20px; }
  .service-hero-label { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 60px 24px; }
  .trust-items { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 16px; font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .deliverables-list { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .split-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .stat-box { padding: 20px 14px; }
  .stat-number { font-size: 1.5rem; }
}
