/* styles.css - extracted and organized from index.html
   Sections:
   - Base
   - Layout
   - Header & Nav
   - Hero
   - Sections & Cards
   - Dropdown
   - Buttons
   - Dark mode
   - Responsive
*/

/* Design tokens (light mode default) */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:rgba(0,0,0,0.65);
  --muted-strong:rgba(0,0,0,0.78);
  --accent:#111111;
  --max-width:1100px;
  --section-gap:100px;
  --border:rgba(0,0,0,0.08);
  --card-border:rgba(0,0,0,0.08);
  --header-height:82px;
}

/* Dark mode overrides — toggled by adding .dark-mode to body */
body.dark-mode{
  --bg:#0e1114;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.74);
  --muted-strong:rgba(255,255,255,0.86);
  --accent:#d9dbe0;
  --border:rgba(255,255,255,0.10);
  --card-border:rgba(255,255,255,0.10);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-text-size-adjust:100%;
  padding-top:var(--header-height, 82px);
}

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

/* Utility .container to match site-container for strict markup requirements */
.container{max-width:var(--max-width);margin:0 auto;padding:0 28px}

/* Header */
/* Header - HammerTech-like layout */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,0.08);
  z-index:1000;
}

.header-inner{
  max-width:1250px;
  margin:0 auto;
  padding:0 40px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{display:flex;align-items:center}
.brand img{height:30px;width:auto;display:block}

/* Navigation with pure-CSS dropdowns */
nav.primary-nav{display:flex;gap:18px;align-items:center}
.nav-item{position:relative}
.nav-item.has-dropdown{position:relative;padding:4px 6px}
.nav-link{color:var(--text);text-decoration:none;font-size:15px;letter-spacing:0.01em;padding:8px 6px;display:inline-block}
.nav-link:focus{outline:2px solid rgba(0,0,0,0.06);outline-offset:3px}
/* dropdown initial state uses opacity/visibility/transform to allow movement into the dropdown */
.has-dropdown .dropdown{
  position:absolute;
  top:100%;
  left:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:all 0.18s ease;
  min-width:220px;
  background:var(--bg);
  border:1px solid var(--border);
  padding:12px 6px;
  border-radius:8px;
  z-index:60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown a{display:block;padding:10px 12px;color:var(--text);text-decoration:none;font-size:14px}
.dropdown a + a{margin-top:6px}
.dropdown a:hover{background:rgba(0,0,0,0.03)}
/* dark-mode hover */
body.dark-mode .dropdown a:hover{background:rgba(255,255,255,0.04)}
/* dark mode dropdown background */
body.dark-mode .has-dropdown .dropdown{background:var(--bg);border:1px solid var(--border)}

/* Dropdown item inner layout: subtle left icon + text */
.dropdown-item-inner{display:flex;align-items:center;gap:10px}
.dropdown-icon{width:18px;height:auto;opacity:0.65;transition:opacity 0.2s ease}
/* Hover state — compatible with existing .dropdown class and any .dropdown-menu usage */
.dropdown a:hover .dropdown-icon,
.dropdown-menu a:hover .dropdown-icon{opacity:1}

/* Larger centered logo at top of dropdown panels */
.dropdown-menu{padding-top:0;list-style:none;margin:0;padding-left:0}
.dropdown-logo{display:flex;justify-content:center;padding:20px 0 10px;border-bottom:1px solid rgba(0,0,0,0.06);margin:0}
.dropdown-logo img{width:180px;height:auto;opacity:0.95;display:block;margin:0}

/* Make primary-nav dropdown panels white with subtle shadow (HammerTech-like) */
.primary-nav .dropdown{
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  border-radius:8px;
  padding:10px 8px;
}
.primary-nav .dropdown a{color:var(--text);padding:10px 12px;display:block}
body.dark-mode .primary-nav .dropdown{background:#1e1e1e;color:#fff;border:1px solid rgba(255,255,255,0.06)}
body.dark-mode .primary-nav .dropdown a{color:#fff}

/* Theme toggle and header CTA */
.header-controls{display:flex;align-items:center;gap:10px}
.header-cta{padding:8px 12px;border-radius:4px;border:1px solid var(--border);background:transparent;color:var(--text);font-weight:600;text-decoration:none}
@media (max-width:640px){.header-cta{display:none}}

/* main nav adjustments */
.main-nav{display:flex;gap:38px;align-items:center;font-weight:500}
.main-nav a{color:#1a1a1a;text-decoration:none}

.header-actions{display:flex;align-items:center;gap:16px}
.mobile-menu-toggle{display:none}
.mobile-nav-panel{display:none}

.btn.primary{background:#5bb1d8;color:#ffffff;padding:12px 22px;border-radius:6px;text-decoration:none;font-weight:600}

/* CTA transition and hover styles for nav and primary buttons */
.nav-cta,
.btn-primary,
.btn.primary {
  transition: all 0.25s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.btn.primary:hover {
  background-color: #4f94b3; /* slightly darker than current */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: #ffffff;
}

@media (max-width:1024px){
  .header-inner{padding:0 20px}
  .main-nav{gap:20px}
  /* use width-based sizing for logo on medium viewports */
  .header-logo img{width:170px;max-height:56px}
}

/* Floating contact button */
.floating-contact{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:1200;
  background:#5bb1d8;
  color:#ffffff;
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.floating-contact:active,.floating-contact:focus{outline:none;box-shadow:0 8px 20px rgba(0,0,0,0.2)}
@media (max-width:640px){
  .floating-contact{padding:9px 12px;right:16px;bottom:16px}
}

/* Global spacing */
main{padding:0}
section{padding:var(--section-gap) 0}
section[id]{scroll-margin-top:calc(var(--header-height) + 18px)}
section + section{border-top:1px solid var(--border)}

/* HERO */
/* Enterprise hero: background image only, subtle full overlay, left-aligned content */
.hero{position:relative;min-height:95vh;display:flex;align-items:center;padding-left:8%;background:url("../images/website-hero.png") center/cover no-repeat}
.hero::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,0.35);pointer-events:none}
.hero-inner{position:relative;z-index:2;max-width:700px;text-align:left}
.hero-eyebrow{letter-spacing:2px;font-size:12px;color:#ffffff;opacity:0.9;margin-bottom:16px}
.hero h1{font-size:64px;font-weight:700;margin-bottom:12px;color:#ffffff}
.hero h2{font-size:22px;font-weight:500;margin-bottom:24px;color:#ffffff}
.hero-sub{font-size:18px;line-height:1.6;margin-bottom:32px;color:#ffffff}
.hero-buttons{display:flex;gap:12px}
.btn{display:inline-block;padding:11px 18px;border-radius:4px;border:1px solid var(--border);background:transparent;text-decoration:none;font-weight:700;font-size:15px}
.btn:hover{background:rgba(0,0,0,0.03)}
.trust-list{display:flex;gap:14px;margin-top:18px;font-size:13px}

/* ensure hero text stays white regardless of mode */
.hero h1,.hero h2,.hero p,.hero span,.hero-eyebrow,.hero-sub{color:#ffffff !important}

/* header logo styling */
.header-logo{
  display:inline-flex;
  align-items:center;
  padding:0;
  line-height:0;
  background:transparent;
  border-radius:0;
}

.header-logo img,
.logo img{
  /* Fill the header logo area cleanly without stretching */
  width:340px;
  height:80px;
  object-fit:cover;
  object-position:center;
  display:block;
}

@media (max-width:1024px){
  .header-logo img,
  .logo img{
    width:292px;
    height:70px;
  }
}

@media (max-width:768px){
  .header-logo img,
  .logo img{
    width:235px;
    height:56px;
  }
}

@media (max-width:420px){
  .header-logo img,
  .logo img{
    width:190px;
    height:48px;
  }
}

/* Social proof pills */
.built-for{display:flex;justify-content:flex-start;margin-top:18px}
.pills{display:flex;flex-wrap:wrap;gap:10px}
.pill{border:1px solid var(--border);padding:8px 12px;border-radius:999px;font-size:13px;color:var(--muted);background:transparent}

/* Platform overview */
.platform{display:grid;grid-template-columns:1fr 420px;gap:32px;align-items:start}
.panel{border:1px solid var(--border);padding:18px;border-radius:6px;background:transparent}
.snapshot-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid rgba(0,0,0,0.04)}
.snapshot-row:last-child{border-bottom:none}
.snapshot-title{font-weight:700}
.snapshot-desc{color:var(--muted);font-size:14px}

/* Core pillars */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.pillar{border:1px solid var(--card-border);padding:26px;border-radius:6px;display:flex;flex-direction:column;justify-content:flex-start;height:100%;transition:border-color .12s}
.pillar:hover{border-color:rgba(0,0,0,0.12)}
.pillar .label{font-size:12px;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.pillar h4{margin:0 0 8px;font-size:16px;font-weight:700}
.pillar p{margin:0;color:var(--muted-strong);font-size:15px}

/* Features grid: 4 image-based cards (HammerTech-like) */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px}

.feature-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid rgba(0,0,0,0.08);transition:transform 0.2s ease,box-shadow 0.2s ease;display:flex;flex-direction:column}
.feature-card:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(0,0,0,0.08)}

.feature-image{position:relative;height:220px;overflow:hidden}
.feature-image img{width:100%;height:100%;object-fit:cover;display:block}


.feature-content{padding:32px;display:flex;flex-direction:column;flex:1}
.feature-content p{margin-bottom:0}
.feature-link{display:inline-block;margin-top:auto;padding-top:20px;font-weight:600;color:#4aa3c5;text-decoration:none}

@media (max-width:1100px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:640px){
  .feature-grid{grid-template-columns:1fr}
}

/* NOTE: .why and legacy .contact styles removed — those sections were deleted from HTML to keep layout tidy */

/* Footer */
footer{border-top:1px solid var(--border);padding:20px 0;color:var(--muted);font-size:13px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer-meta{border-top:1px solid var(--border);padding-top:12px;margin-top:12px;color:var(--muted);font-size:13px}
.footer-meta-inner{display:flex;justify-content:space-between;align-items:center}

/* Responsive */
@media (max-width:980px){.platform{grid-template-columns:1fr}}
@media (max-width:760px){.pillars{grid-template-columns:1fr}.why{grid-template-columns:1fr}}
@media (max-width:640px){
  :root{--header-height:56px}
  .header-inner{height:56px}
  .hero-inner{padding-left:20px;padding-right:20px}
  .hero h1{font-size:36px}
  .hero p.lead{font-size:15px}
  .site-container{padding:0 18px}
}

/* End of styles.css */

/* ============================= */
/* Optimize Section */
/* ============================= */

.optimize-section {
  background: #ffffff;
}

/* New container that centers content and constrains width */
.optimize-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.optimize-text{
  max-width: 600px; /* text column constraint per spec */
}

.optimize-text .eyebrow{
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #5e6b78;
  margin-bottom: 20px;
  font-weight: 600;
}

.optimize-text h2{
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1f2b;
}

.optimize-text p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.text-cta{
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #5da7c7;
  text-decoration: none;
  transition: 0.2s ease;
}

.text-cta:hover{opacity:0.8}

/* Image column constraint and sizing */
.optimize-image{max-width:500px}
.optimize-image img{width:100%;max-width:500px;display:block}

/* Mobile: stack vertically and center content */
@media (max-width: 768px){
  .optimize-container{
    flex-direction:column;
    padding: 60px 20px;
    gap: 32px;
    align-items:center;
    text-align:center;
  }

  .optimize-text{max-width:100%}
  .optimize-image{max-width:100%}

  .optimize-text h2{font-size:34px}
}

/* Logo marquee: perfect seamless loop */
.logo-marquee{
  overflow:hidden;
  background:#f8f8f8;
  padding:36px 0;
}

.marquee-track{
  display:flex;
  width:max-content;
  animation:scroll 47.52s linear infinite;
}

.logo-set{
  display:flex;
  gap:64px;
  padding-right:64px;
}

.logo-set img{
  height:88px;
  opacity:0.9;
  flex-shrink:0;
}

@keyframes scroll{
  from{transform:translateX(0);} 
  to{transform:translateX(-50%);} /* moves exactly half the track (one duplicated set) */
}

@media (max-width:768px){
  .logo-set img{height:66px}
}

/* ============================= */
/* Productivity Section (requested) */
/* ============================= */
.productivity-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.productivity-text {
  max-width: 600px;
}

.productivity-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .productivity-section {
    flex-direction: column;
    text-align: center;
  }

  .productivity-image img {
    max-width: 100%;
  }
}

/* ============================= */
/* Professional Contact Section - Light Theme */
/* ============================= */
.contact-section{
  width:100%;
  background:#f5f6f8; /* light neutral background */
  color:#1f2937; /* dark text */
  padding-top:60px;
  padding-bottom:100px;
}
.contact-inner{max-width:1100px;margin:0 auto;padding:0 28px}
.contact-inner h2{color:#0f172a;font-size:36px;margin-bottom:12px}
.contact-sub{color:#374151;margin-bottom:28px}
.contact-grid{display:flex;gap:40px;align-items:start}
.contact-cards{display:flex;flex-direction:column;gap:18px;width:420px}
.contact-card{background:#ffffff;border:1px solid #e5e7eb;padding:20px;border-radius:12px;box-shadow:0 8px 20px rgba(15,23,42,0.04)}
.contact-card h3{color:#0f172a;margin:0 0 6px}
.contact-card .muted{color:#6b7280;margin-bottom:10px}
.contact-link{color:#1f6f8f;text-decoration:none;font-weight:600}
.contact-primary .btn.primary{background:#5bb1d8;color:#ffffff}

.contact-form{flex:1;display:flex;flex-direction:column;gap:12px;background:transparent}
.contact-form .form-field{display:block;color:#111827}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #d1d5db;background:#ffffff;color:#0f172a}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:#4f94b3;box-shadow:0 6px 18px rgba(79,148,179,0.08)}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#9ca3af}
.form-actions{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.form-note{color:#6b7280;font-size:13px;margin:0}

@media (max-width:900px){
  .contact-grid{flex-direction:column;align-items:center;text-align:center}
  .contact-cards{width:100%;flex-direction:row;justify-content:space-between}
  .contact-card{flex:1;margin:0 8px}
  .form-actions{align-items:center}
}

/* Adapted contact styles (converted from provided snippet) */
.contact-header { margin-bottom: 60px; max-width: 700px; }
.contact-header h2 { font-size: 42px; font-weight: 600; margin-bottom: 12px; color: #111827; }
.contact-header p { font-size: 18px; color: #6b7280; }

/* Contact logo above form — removed from markup; rule kept to prevent layout shift if element is re-introduced */
.contact-logo { display: none; }


.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.contact-grid { display: grid; grid-template-columns: 420px 1fr; gap: 60px; }

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.info-card { background: #ffffff; padding: 32px; border-radius: 12px; border: 1px solid #e5e7eb; }
.info-card h4 { font-size: 18px; margin-bottom: 8px; color: #111827; }
.info-card p { font-size: 14px; color: #6b7280; margin-bottom: 20px; }
.phone-link { font-weight: 600; color: #5bb1d8; text-decoration: none; }
.email-options { margin: 0; }
.email-options summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.email-options summary::-webkit-details-marker { display: none; }
.email-options .btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
}
.email-options-menu {
  margin-top: 10px;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  max-width: 280px;
}
.email-options-menu a {
  display: block;
  padding: 11px 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  border-bottom: 1px solid #eef2f7;
}
.email-options-menu a:last-child { border-bottom: 0; }
.email-options-menu a:hover { background: #f8fbff; }

.contact-form { background: #ffffff; padding: 40px; border-radius: 12px; border: 1px solid #e5e7eb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #111827; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid #d1d5db; font-size: 15px; transition: all 0.2s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #4f94b3; box-shadow: 0 0 0 2px rgba(79,148,179,0.08); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { margin: 10px 0 0; font-size: 14px; min-height: 20px; color: #0f172a; }
.form-status.is-error { color: #b91c1c; }
.form-status.is-success { color: #166534; }

.btn.primary.large { width: 100%; padding: 14px 18px; font-size: 16px; margin-top: 10px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-header { text-align: center; margin: 0 auto 32px; }
  .contact-info { flex-direction: row; gap: 12px; }
  .info-card { flex: 1; }
  .contact-form { padding: 24px; }
}

/* ============================= */
/* Footer bar (single-line professional bar) */
/* ============================= */
.footer-bar{background:#f3f4f6;border-top:1px solid #e5e7eb}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 0;color:#6b7280;font-size:14px}
.footer-inner a{color:#5bb1d8;text-decoration:none}
.footer-left,.footer-center,.footer-right{flex:1}
.footer-center{text-align:center}
.footer-right{text-align:right}
.footer-home-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.footer-home-link img{
  width:18px;
  height:18px;
  border-radius:4px;
  display:block;
}

@media (max-width:640px){
  .footer-inner{flex-direction:column;align-items:center;text-align:center;padding:20px 12px}
  .footer-left,.footer-center,.footer-right{width:100%;text-align:center;margin:6px 0}
}

/* ============================= */
/* Mobile layout — ≤768px        */
/* ============================= */
@media (max-width:768px){
  /* Prevent horizontal overflow site-wide */
  body{overflow-x:hidden}

  /* Reduce section vertical rhythm */
  :root{--section-gap:60px}

  /* Hide full nav on mobile to prevent overflow */
  nav.primary-nav.main-nav{display:none}
  .header-actions{display:none}
  .mobile-menu-toggle{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    width:40px;
    height:40px;
    padding:8px;
    border:1px solid #d1d5db;
    background:#ffffff;
    border-radius:6px;
    cursor:pointer;
  }
  .mobile-menu-toggle-line{
    width:100%;
    height:2px;
    background:#111111;
    border-radius:999px;
    display:block;
  }
  .mobile-nav-panel{
    display:none;
    padding:10px 16px 16px;
    border-top:1px solid #e5e7eb;
    background:#ffffff;
  }
  .mobile-nav-panel > a{
    display:flex;
    align-items:center;
    min-height:52px;
    padding:14px 4px;
    text-decoration:none;
    color:#111111;
    font-size:16px;
    border-bottom:1px solid #f1f5f9;
  }
  .mobile-nav-panel > a:last-child{
    border-bottom:none;
    margin-top:10px;
    text-align:center;
  }
  .mobile-submenu-group{
    border-bottom:1px solid #f1f5f9;
  }
  .mobile-submenu-group summary{
    list-style:none;
    width:100%;
    text-align:left;
    min-height:60px;
    padding:16px 60px 16px 12px;
    display:flex;
    align-items:center;
    border:1px solid #e2e8f0;
    border-radius:8px;
    background:#ffffff;
    color:#111111;
    font-size:16px;
    cursor:pointer;
    position:relative;
  }
  .mobile-submenu-group summary::-webkit-details-marker{
    display:none;
  }
  .mobile-submenu-group summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    line-height:1;
    color:#334155;
    background:#f8fafc;
    border-left:1px solid #e2e8f0;
    border-radius:0 8px 8px 0;
    pointer-events:none;
  }
  .mobile-submenu-group[open] summary::after{
    content:"-";
  }
  .mobile-submenu{
    list-style:none;
    margin:0;
    padding:0 0 8px 14px;
  }
  .mobile-submenu li a{
    display:block;
    font-size:14px;
    color:#334155;
    padding:9px 4px;
    text-decoration:none;
    border-bottom:1px solid #f8fafc;
  }
  .mobile-submenu li:last-child a{
    border-bottom:none;
  }
  .site-header.mobile-nav-open .mobile-nav-panel{display:block}

  /* Hero: more compact on mobile */
  .hero{min-height:70vh;padding-left:0}
  .hero-inner{padding:0 20px}
  .hero h1{font-size:40px}
  .hero h2{font-size:18px}
  .hero-sub{font-size:16px}
  .hero-buttons .btn{width:100%;text-align:center;box-sizing:border-box}

  /* Features: tighten card padding */
  .feature-content{padding:20px}
  .feature-image{height:180px}

  /* Contact section */
  .contact-section{padding-top:40px;padding-bottom:60px}
  .container{padding:0 16px}
  .contact-section h2{font-size:28px}
  .contact-grid{grid-template-columns:1fr;gap:24px}
  .contact-info{flex-direction:column;gap:16px}
  .info-card{padding:20px}
  .contact-form{padding:20px}
  .form-row{grid-template-columns:1fr;gap:0}
  .btn.primary.large{font-size:15px}
}
