@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --navy: #1B2A4A;
  --red: #C0272D;
  --light-gray: #F4F4F4;
  --light-blue: #D6E4F0;
  --white: #ffffff;
  --dark: #111827;
  --mid-gray: #6B7280;
  --border: #E5E7EB;
  --dark-navy: #0F1929;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.1; }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* BUTTONS */
.btn { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.8rem 1.8rem; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a01f24; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(192,39,45,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #142038; transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* TOP BAR */
.top-bar { background: var(--navy); padding: 0.4rem 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.top-bar a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-phone { color: var(--white) !important; font-weight: 600; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.05em; }

/* NAV */
nav { background: var(--dark-navy); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 80px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 0.5rem 0.85rem; transition: color 0.2s; position: relative; display: block; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0.85rem; right: 0.85rem; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; margin-left: 0.5rem; padding: 0.55rem 1.2rem !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a01f24 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* HERO */
.hero { background: var(--navy); position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center; padding: 5rem 2rem; }
.hero-bg-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px); }
.hero-bg-shape { position: absolute; right: -100px; top: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(192,39,45,0.12) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(192,39,45,0.15); border: 1px solid rgba(192,39,45,0.3); padding: 0.35rem 0.9rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: #f87171; margin-bottom: 1.5rem; }
.hero-tag .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { font-size: clamp(3rem, 5.5vw, 5rem); color: var(--white); line-height: 1.0; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--white); display: block; line-height: 1; }
.hero-trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: all 0.2s; }
.hero-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(192,39,45,0.4); }
.hero-card-icon { width: 44px; height: 44px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }
.hero-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.2rem; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* RED DIVIDER */
.red-bar { height: 5px; background: var(--red); }

/* TRUST BAR */
.trust-bar { background: var(--dark-navy); padding: 1.25rem 2rem; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.65); font-size: 0.85rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-item svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-gray { background: var(--light-gray); }
.section-navy { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); }
.section-header p { color: var(--mid-gray); font-size: 1rem; max-width: 580px; margin-top: 0.6rem; line-height: 1.7; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }
.section-header.white h2 { color: var(--white); }
.section-header.white p { color: rgba(255,255,255,0.65); }
.section-header.white .section-label { color: rgba(255,255,255,0.5); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: all 0.25s; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.25s; }
.service-card:hover { background: #FAFAFA; }
.service-card:hover::after { transform: scaleX(1); }
.service-card-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; color: var(--light-gray); line-height: 1; margin-bottom: 0.5rem; transition: color 0.25s; }
.service-card:hover .service-card-num { color: rgba(192,39,45,0.1); }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 1rem; }
.service-card-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-card-link:hover { text-decoration: underline; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-placeholder { background: var(--light-gray); height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid var(--border); }
.about-img-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0,0,0,0.015) 20px, rgba(0,0,0,0.015) 21px); }
.about-img-logo { position: relative; width: 260px; opacity: 1; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); padding: 1.5rem; text-align: center; min-width: 120px; }
.about-badge-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.5rem; line-height: 1; display: block; }
.about-badge-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--mid-gray); line-height: 1.8; margin-bottom: 1rem; }
.about-checks { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-check { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.about-check::before { content: ''; width: 20px; height: 20px; background: var(--red); flex-shrink: 0; display: block; clip-path: polygon(14% 44%, 0% 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }

/* CTA BAND */
.cta-band { background: var(--navy); padding: 4rem 2rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: var(--red); clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0.08; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.6); margin-top: 0.4rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 4.5rem 2rem 3.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px); }
.page-hero::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.page-hero-content { position: relative; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-top: 0.75rem; max-width: 580px; line-height: 1.7; }
.page-hero-actions { margin-top: 1.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* SERVICES PAGE */
.service-section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-section:last-child { border-bottom: none; }
.service-section-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.service-section-meta { position: sticky; top: 95px; }
.service-section-meta h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1.25rem; }
.service-section-body p { color: var(--mid-gray); line-height: 1.8; margin-bottom: 0.9rem; }
.service-section-body h3 { font-size: 1.05rem; color: var(--navy); margin: 1.5rem 0 0.4rem; font-weight: 700; }

/* EQUIPMENT CARDS */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.equipment-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.equipment-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.equipment-photo { background: var(--light-gray); height: 210px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.equipment-photo img { width: 100%; height: 100%; object-fit: cover; }
.equipment-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--mid-gray); font-size: 0.8rem; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.equipment-photo-placeholder svg { opacity: 0.25; }
.equipment-body { padding: 1.5rem; }
.equipment-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.rate-row { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.rate-badge { display: inline-block; background: var(--light-blue); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; padding: 0.2rem 0.6rem; text-transform: uppercase; }
.equipment-body p { font-size: 0.88rem; color: var(--mid-gray); margin-bottom: 1rem; line-height: 1.6; }

/* BRAND PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.partner-card { border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; transition: all 0.25s; background: var(--white); }
.partner-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: var(--navy); }
.partner-logo { height: 80px; width: 100%; object-fit: contain; filter: grayscale(20%); transition: filter 0.25s; }
.partner-card:hover .partner-logo { filter: grayscale(0%); }
.partner-card h3 { font-size: 1.05rem; color: var(--navy); }
.partner-card p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.6; flex: 1; }
.partner-tag { display: inline-block; background: var(--light-blue); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.7rem; }

/* DELIVERY NOTE */
.delivery-note { background: var(--navy); color: var(--white); padding: 1.25rem 2rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.delivery-note svg { width: 22px; height: 22px; stroke: var(--light-blue); fill: none; stroke-width: 2; flex-shrink: 0; }
.delivery-note p { font-size: 0.95rem; line-height: 1.5; }
.delivery-note strong { color: var(--light-blue); }
.delivery-note a { color: var(--light-blue); font-weight: 600; }

/* CALENDAR */
.calendar-placeholder { background: var(--light-gray); border: 2px dashed var(--border); padding: 3rem; text-align: center; margin-bottom: 3rem; }
.calendar-instructions { background: var(--light-blue); border-left: 4px solid var(--navy); padding: 1.5rem 2rem; margin-top: 1.5rem; text-align: left; }
.calendar-instructions h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.75rem; }
.calendar-instructions ol { padding-left: 1.25rem; color: var(--dark); font-size: 0.9rem; line-height: 2; }
.calendar-instructions code { background: rgba(27,42,74,0.12); padding: 0.1em 0.4em; font-size: 0.85em; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-block { background: var(--light-gray); padding: 2.5rem; }
.contact-info-block h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-row-icon { width: 40px; height: 40px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-row-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-gray); font-weight: 600; }
.contact-row-value { font-size: 1rem; color: var(--dark); margin-top: 0.15rem; }
.contact-row-value a { color: var(--navy); font-weight: 600; }
.contact-row-value a:hover { color: var(--red); }
.contact-cta-block { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-card { padding: 2rem; }
.cta-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.cta-card p { font-size: 0.92rem; margin-bottom: 1.25rem; }
.cta-card-navy { background: var(--navy); color: var(--white); }
.cta-card-navy p { color: rgba(255,255,255,0.65); }
.cta-card-red { background: var(--red); color: var(--white); }
.cta-card-red p { color: rgba(255,255,255,0.75); }
.cta-card-light { background: var(--light-gray); }
.cta-card-light h3 { color: var(--navy); }
.cta-card-light p { color: var(--mid-gray); }
.cta-card-blue { background: var(--light-blue); }
.cta-card-blue h3 { color: var(--navy); }
.cta-card-blue p { color: var(--mid-gray); }
.map-placeholder { background: var(--light-gray); border: 2px dashed var(--border); height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem; color: var(--mid-gray); font-size: 0.9rem; margin-top: 1.5rem; }
.map-placeholder a { color: var(--red); font-weight: 600; text-decoration: underline; }
.mobile-call-banner { background: var(--red); padding: 1.25rem 2rem; text-align: center; }
.mobile-call-banner p { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.mobile-call-banner a { display: inline-block; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; }

/* SHOP */
.shop-section { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.shop-section:last-child { border-bottom: none; }
.shop-section-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.shop-section h2 { font-size: 1.9rem; color: var(--navy); }
.shop-section p { color: var(--mid-gray); max-width: 540px; margin-top: 0.5rem; line-height: 1.7; }
.shop-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.shop-item-placeholder { background: var(--light-gray); padding: 1.75rem 1.25rem; text-align: center; border: 1px dashed var(--border); }
.shop-item-placeholder p { font-size: 0.82rem; color: var(--mid-gray); margin-top: 0.5rem; }

/* FOOTER */
footer { background: var(--dark-navy); color: rgba(255,255,255,0.55); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 60px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
footer ul a:hover { color: var(--white); }
.footer-contact-line { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-contact-line a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-block { display: none; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .service-section-inner { grid-template-columns: 1fr; }
  .service-section-meta { position: static; }
  .top-bar { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; padding: 0.75rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; }
  .nav-cta { margin-left: 1.5rem; margin-top: 0.5rem; margin-bottom: 0.5rem; display: inline-block; width: auto; }
  .nav-toggle { display: flex; }
  .hero { padding: 3.5rem 1.25rem; min-height: auto; }
  .section { padding: 3.5rem 1.25rem; }
  .cta-band { padding: 3rem 1.25rem; }
  .cta-band-inner { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1rem; justify-content: flex-start; }
  .partners-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .page-hero-actions { flex-direction: column; }
}
