

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Rubik', sans-serif; background: #F5F0E8; color: #1E1E2E; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── CSS VARIABLES ── */
:root {
  --navy: #0D1F3C;
  --gold: blue;
  --gold-light: blue;
  --cream: #F5F0E8;
  --charcoal: #1E1E2E;
  --white: #FFFFFF;
  --light: #EEF1F7;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: #aab8cc;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Rubik', Courier, monospace;
}
.top-bar a { color: #aab8cc; transition: color var(--transition); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar .socials { display: flex; gap: 10px; }
.top-bar .socials a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.top-bar .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  box-shadow: 0 2px 24px rgba(13,31,60,.10);
  gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo .logo-mark {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav-logo .logo-mark::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-name {
  font-family: 'Rubik', serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: .02em;
}
.nav-logo .logo-sub { font-size: 9px; font-weight: 600; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }

/* Nav menu */
.nav-menu { flex: 1; display: flex; align-items: center; justify-content: center; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--gold); background: rgba(200,146,42,.07); }
.nav-list > li > a .arrow {
  font-size: 10px;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-list > li:hover > a .arrow { transform: rotate(180deg); }

/* ── DROPDOWN ── */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(13,31,60,.15);
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 200;
}
.nav-list > li:hover > .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.dropdown li { position: relative; }
.dropdown li a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 18px;
  font-size: 12px; font-weight: 500; letter-spacing: .03em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}
.dropdown li:last-child a { border-bottom: none; border-radius: 0 0 10px 10px; }
.dropdown li a:hover { background: var(--cream); color: var(--navy); padding-left: 24px; }
.dropdown li a .sub-arrow { font-size: 10px; color: #999; }

/* Nested submenu */
.sub-dropdown {
  position: absolute; top: 0; left: 100%;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(13,31,60,.15);
  min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border-top: 3px solid var(--gold-light);
  z-index: 300;
}
.dropdown li:hover > .sub-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
.sub-dropdown li a { font-size: 11.5px; }

/* Nav CTA */
.nav-cta {
  display: flex; gap: 10px; align-items: center; flex-shrink: 0;
}
.btn-contact {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .07em !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 14px rgba(200,146,42,.3);
  white-space: nowrap;
}
.btn-contact:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200,146,42,.4) !important;
}
.btn-portal {
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .07em !important;
  transition: background var(--transition), color var(--transition) !important;
  white-space: nowrap;
}
.btn-portal:hover { background: var(--navy); color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ── */
.hero { position: relative; height: calc(100vh - var(--nav-h) - 37px); min-height: 520px; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(.77,0,.18,1); }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,31,60,.72) 0%, rgba(13,31,60,.38) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 10%;
}
.slide-content { color: var(--white); max-width: 580px; }
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.slide-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold-light); }
.slide-title {
  font-family: 'Rubik', serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900; line-height: 1.08; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.slide-title em { color: var(--gold-light); font-style: normal; }
.slide-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 440px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 13px;
  letter-spacing: .05em; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(200,146,42,.4);
  transition: background var(--transition), transform var(--transition);
}
.slide-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.slide-btn-secondary {
  background: transparent; color: var(--white);
  padding: 13px 32px; border-radius: 50px; font-weight: 600; font-size: 13px;
  letter-spacing: .05em; border: 2px solid rgba(255,255,255,.5); cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.slide-btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background var(--transition);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
.slider-prev:hover, .slider-next:hover { background: var(--gold); border-color: var(--gold); }
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.slider-dots span.active { background: var(--gold); width: 26px; border-radius: 50px; }

/* Slide counter badge */
.slide-counter {
  position: absolute; bottom: 28px; right: 40px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: .12em; z-index: 10;
}
.slide-counter span { color: var(--gold-light); font-size: 18px; }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--navy);
  display: flex; align-items: stretch;
  overflow-x: auto;
}
.strip-item {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.75);
  font-size: 11.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  cursor: default;
  text-align: center;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(200,146,42,.12); color: var(--gold-light); }
.strip-icon { font-size: 26px; color: var(--gold); }

/* ── SECTIONS GENERIC ── */
.section { padding: 80px 40px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.section-title {
  font-family: 'Rubik', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px;
}
.section-desc { font-size: 15px; line-height: 1.8; color: #4a5568; max-width: 560px; }

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,31,60,.14);
  height: 460px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--white);
  border-radius: 14px; padding: 22px 26px; text-align: center;
  box-shadow: 0 12px 32px rgba(200,146,42,.35);
}
.about-badge .num { font-family: 'Rubik', serif; font-size: 40px; font-weight: 900; line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feat-card {
  background: var(--cream); border-radius: 12px; padding: 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.feat-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feat-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feat-desc { font-size: 12px; color: #6b7280; line-height: 1.5; }

/* ── PRODUCTS SECTION ── */
.products-section { background: var(--cream); }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,31,60,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,31,60,.13); }
.product-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.product-card-body { padding: 28px; }
.product-icon { font-size: 36px; margin-bottom: 16px; }
.product-name { font-family: 'Rubik', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.product-desc { font-size: 13px; color: #6b7280; line-height: 1.65; margin-bottom: 20px; }
.product-link { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.product-link:hover { color: var(--navy); }

/* ── STATS SECTION ── */
.stats-sectionR {
  background: var(--navy);
  padding: 64px 40px;
}
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num {
  font-family: 'Rubik', serif;
  font-size: 52px; font-weight: 900; color: var(--gold-light);
  line-height: 1;
}
.stat-suffix { font-size: 28px; }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; }
.stat-divider { width: 32px; height: 2px; background: var(--gold); margin: 12px auto 0; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--white); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info-block { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-title { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.contact-item-val { font-size: 13px; color: #4a5568; }

/* Contact form */
.contact-form { background: var(--cream); border-radius: 20px; padding: 40px; }
.contact-form h3 { font-family: 'Rubik', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 10px; border: 1.5px solid #dde1ea;
  background: var(--white); font-family: 'Rubik', sans-serif; font-size: 13px;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px; border: none; border-radius: 50px;
  background: var(--navy); color: var(--white);
  font-family: 'Rubik', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 6px 20px rgba(13,31,60,.2);
}
.form-submit:hover { background: var(--gold); transform: translateY(-1px); }
.form-note { font-size: 11px; color: #9aa0b4; text-align: center; margin-top: 12px; }

/* ── FOOTER ── */
footer {
  background: #08152A;
  color: rgba(255,255,255,.65);
}
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 40px; max-width: 1200px; margin: 0 auto;
}
.footer-brand .brand-name { font-family: 'Rubik', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-brand .brand-tagline { font-size: 11px; font-weight: 600; letter-spacing: .15em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,.65);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12.5px; color: rgba(255,255,255,.6); transition: color var(--transition), padding-left var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 11.5px;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 999;
  box-shadow: 0 6px 20px rgba(200,146,42,.4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { transform: translateY(-3px); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,31,60,.98); z-index: 998;
  flex-direction: column; padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-overlay.open { display: flex; }
.mob-list { display: flex; flex-direction: column; gap: 4px; }
.mob-list > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: 20px; font-weight: 700;
  font-family: 'Rubik', serif;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08);
}
.mob-list > li > a:hover { color: var(--gold-light); }
.mob-submenu { padding: 8px 0 8px 16px; display: none; flex-direction: column; gap: 2px; }
.mob-submenu.open { display: flex; }
.mob-submenu a { padding: 8px 4px; font-size: 13px; color: rgba(255,255,255,.7); }
.mob-submenu a:hover { color: var(--gold-light); }
.mob-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mob-cta a {
  padding: 14px; text-align: center; border-radius: 50px;
  font-weight: 700; font-size: 14px; letter-spacing: .06em;
}
.mob-cta .mob-btn-primary { background: var(--gold); color: var(--white); }
.mob-cta .mob-btn-secondary { border: 2px solid rgba(255,255,255,.3); color: var(--white); }

/* ── NOTIFICATION TOAST ── */
.toast {
  position: fixed; bottom: 90px; right: 28px;
  background: var(--navy); color: var(--white);
  padding: 14px 20px; border-radius: 12px; font-size: 13px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  border-left: 4px solid var(--gold);
  transform: translateX(120%); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 997;
  max-width: 280px;
}
.toast.show { transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 12px; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar { padding: 6px 20px; font-size: 11px; }
  .top-bar-left .email-bar { display: none; }
  .navbar { padding: 0 20px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero { height: 75vw; min-height: 380px; }
  .slide-overlay { padding: 0 6%; }
  .section { padding: 54px 20px; }
  .stats-sectionR { padding: 48px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-strip { flex-wrap: wrap; }
  .strip-item { min-width: 50%; }
}
