/* ============================================================
   MKZ Engineering Pty Ltd — Stylesheet
   Colour palette: deep steel blue, bright orange/tangerine, light grey
   ============================================================ */

:root {
  --navy:       #1b2a4a;
  --navy-mid:   #253a62;
  --navy-light: #2f4a7a;
  --gold:       #e0742d;
  --gold-light: #f09048;
  --bronze:     #b85a1c;
  --cream:      #f2f4f7;
  --white:      #ffffff;
  --text-dark:  #1b2a4a;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #dce0e6;
  --shadow:     0 4px 24px rgba(27,42,74,0.12);
  --radius:     6px;
  --transition: 0.28s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; color: var(--text-mid); }
.lead { font-size: 1.2rem; color: var(--text-mid); max-width: 700px; }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-heading { margin-bottom: 16px; }
.divider { width: 56px; height: 3px; background: var(--gold); margin: 0 0 32px; border-radius: 2px; }
.divider-center { margin: 0 auto 32px; }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,116,45,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); transform: translateY(-2px); }

/* ============================ NAVIGATION ============================ */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--navy); box-shadow: 0 2px 16px rgba(0,0,0,0.22); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.logo-icon { width: 42px; height: 42px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; font-weight: 700; font-size: 1.3rem; color: var(--white); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'Georgia', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.logo-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius); transition: all var(--transition); text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(224,116,45,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }

/* ============================ HERO ============================ */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3560 100%); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 640px; height: 640px; background: radial-gradient(circle, rgba(224,116,45,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero .lead { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(224,116,45,0.2); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.hero-stat { background: rgba(27,42,74,0.7); backdrop-filter: blur(8px); padding: 24px 16px; text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: 'Georgia', serif; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(224,116,45,0.2); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all var(--transition); }
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.hero-card-icon { width: 52px; height: 52px; background: rgba(224,116,45,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem; }
.hero-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }
.hero-card.featured { grid-column: span 2; background: rgba(224,116,45,0.12); border-color: rgba(224,116,45,0.35); }

/* ============================ FEATURE STRIP ============================ */
.feature-strip { background: var(--cream); padding: 48px 0; }
.feature-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); }
.feature-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.feature-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ============================ SERVICES CARDS ============================ */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.service-card { border: 1px solid var(--border); border-radius: 10px; padding: 36px 28px; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(224,116,45,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* ============================ WHY CHOOSE US ============================ */
.why-section { background: var(--navy); }
.why-section .section-heading { color: var(--white); }
.why-section .lead { color: rgba(255,255,255,0.7); }
.why-section .divider { background: var(--gold); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-num { width: 40px; height: 40px; flex-shrink: 0; background: rgba(224,116,45,0.15); border: 1px solid rgba(224,116,45,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; font-weight: 700; color: var(--gold); font-size: 0.95rem; }
.why-point h4 { color: var(--white); margin-bottom: 4px; }
.why-point p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }
.why-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(224,116,45,0.2); border-radius: 12px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat { text-align: center; }
.why-stat-num { font-size: 2.4rem; font-family: 'Georgia', serif; font-weight: 700; color: var(--gold); }
.why-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ============================ TESTIMONIALS ============================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--white); border-radius: 10px; padding: 32px 28px; box-shadow: 0 2px 12px rgba(27,42,74,0.07); border-top: 3px solid var(--gold); display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text-mid); font-size: 0.95rem; flex: 1; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; font-weight: 700; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.author-location { font-size: 0.78rem; color: var(--text-light); }

/* ============================ CTA SECTION ============================ */
.cta-section { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(224,116,45,0.1), transparent 70%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================ PAGE HERO (inner pages) ============================ */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0 60px; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a { color: var(--gold); }

/* ============================ ABOUT PAGE ============================ */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { background: var(--cream); border-radius: 12px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-tile { background: var(--white); border-radius: 8px; padding: 24px 16px; text-align: center; box-shadow: 0 2px 8px rgba(27,42,74,0.07); }
.about-tile-icon { font-size: 1.8rem; margin-bottom: 10px; }
.about-tile-val { font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: 'Georgia', serif; }
.about-tile-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border-radius: 10px; padding: 28px 20px; text-align: center; border-bottom: 3px solid var(--gold); box-shadow: 0 2px 8px rgba(27,42,74,0.06); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar { width: 100%; height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; font-size: 3rem; font-weight: 700; color: var(--gold); }
.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.team-info p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ============================ SERVICES PAGE ============================ */
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.service-full-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 36px; display: flex; gap: 24px; transition: all var(--transition); }
.service-full-card:hover { box-shadow: var(--shadow); border-color: rgba(224,116,45,0.3); }
.service-full-icon { width: 64px; height: 64px; flex-shrink: 0; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; transition: all var(--transition); }
.service-full-card:hover .service-full-icon { background: var(--gold); }
.service-full-body h3 { margin-bottom: 8px; }
.service-full-body p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 12px; }
.service-features { display: flex; flex-direction: column; gap: 6px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-mid); }
.service-features li::before { content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.process-section { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 60px; right: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num { width: 60px; height: 60px; background: var(--navy); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; font-weight: 700; color: var(--gold); font-size: 1.2rem; margin: 0 auto 16px; }
.process-step h4 { font-size: 0.9rem; margin-bottom: 6px; }
.process-step p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ============================ CONTACT PAGE ============================ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-detail h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 2px; }
.contact-detail p { font-size: 0.92rem; color: var(--text-mid); margin: 0; }
.contact-form { background: var(--cream); border-radius: 12px; padding: 40px; }
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; color: var(--text-dark); background: var(--white); transition: border-color var(--transition); font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,116,45,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================ LEGAL PAGES ============================ */
.legal-section { background: var(--white); }
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.4rem; color: var(--navy); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--cream); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; }
.legal-meta { background: var(--cream); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 32px; font-size: 0.88rem; color: var(--text-mid); }

/* ============================ FOOTER ============================ */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 280px; margin-bottom: 20px; }
.footer-abn { background: rgba(224,116,45,0.1); border: 1px solid rgba(224,116,45,0.2); border-radius: var(--radius); padding: 12px 16px; font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-abn span { color: var(--gold); font-weight: 600; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(224,116,45,0.2); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin: 0; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-decoration: none; }
.footer-legal-links a:hover { color: var(--gold); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .services-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 999; }
  .mobile-menu a { display: block; padding: 12px 24px; color: rgba(255,255,255,0.82); font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; }
  .mobile-menu a:hover { color: var(--gold); background: rgba(224,116,45,0.08); }
  .navbar { position: relative; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-strip-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { display: none; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .feature-strip-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
