/* ============================================================
   FIRST COAST PROPERTY MAINTENANCE — styles.css
   Clean, professional, B2B-leaning. Slate blue + amber accent.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f8f9fb;
  --slate:     #2c3e50;
  --blue:      #2980b9;
  --amber:     #f39c12;
  --white:     #ffffff;
  --card-bg:   #ffffff;
  --footer-dk: #1a252f;
  --text:      #2c3e50;
  --muted:     #7f8c8d;
  --border:    #dde4ec;
  --light-bg2: #eef2f7;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- UTILITIES ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  border-left: 3px solid var(--amber);
  padding-left: 10px;
}

.section-header { max-width: 600px; margin-bottom: 52px; }
.section-header-center { max-width: 600px; margin: 0 auto 52px; text-align: center; }
.section-header-center .section-eyebrow { display: inline-block; border-left: none; padding-left: 0; }

.section-header h2, .section-header-center h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: .97rem; line-height: 1.7; }
.headline-accent { color: var(--blue); }

/* ---- FADE-UP ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(44,62,80,.1);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--slate);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  flex-shrink: 0;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 2px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line1 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: .02em;
}
.logo-line2 {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--slate);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: #1f6fa3 !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  transition: .3s;
}

/* ============================================================
   HERO — split layout
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 86vh;
  background: var(--white);
}

.hero-left {
  padding: 80px 56px 80px max(24px, calc((100vw - 1180px)/2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  border-left: 3px solid var(--amber);
  padding-left: 10px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--amber);
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: .02em;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--light-bg2);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--white);
  border-left: 3px solid var(--amber);
  padding: 16px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(44,62,80,.12);
}
.hsc-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
}
.hsc-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s;
  border: none;
  text-decoration: none;
  letter-spacing: .02em;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: #1f6fa3; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(41,128,185,.25); }

.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--slate); background: var(--bg); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover { background: var(--bg); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 700;
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--slate);
  padding: 36px 0;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 48px;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber);
}
.stat-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 88px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(44,62,80,.1);
  transform: translateY(-3px);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--light-bg2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-we-serve {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 4px;
  padding: 28px 22px;
  transition: box-shadow .25s;
}
.client-card:hover {
  box-shadow: 0 4px 20px rgba(44,62,80,.08);
}

.client-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.client-card h3 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}
.client-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 88px 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-text > p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.point-bar {
  display: block;
  width: 3px;
  min-height: 52px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.about-point p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-image {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: 520px;
}
.about-image > img {
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
}
.about-service-image {
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ============================================================
   HOW TO GET STARTED
   ============================================================ */
.how-started {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  background: var(--slate);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}

.step-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 88px 0;
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(44,62,80,.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s;
}
.review-card:hover { box-shadow: 0 6px 28px rgba(44,62,80,.1); }

.review-stars {
  color: var(--amber);
  font-size: .95rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  background: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: .87rem;
  color: var(--text);
  font-weight: 700;
}
.review-author span {
  font-size: .76rem;
  color: var(--muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--blue);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: .96rem; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 88px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.detail-icon {
  font-size: 1.1rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-detail a, .contact-detail span {
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--blue); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .77rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .91rem;
  padding: 11px 14px;
  transition: border-color .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: .7;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,128,185,.08);
}
.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237f8c8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.field-error {
  font-size: .75rem;
  color: #e74c3c;
  min-height: 14px;
}

/* checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 14px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  transition: background .15s;
}
.checkbox-label:hover { background: var(--bg); }
.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}
.checkbox-grid.error-state { border-color: #e74c3c; }

.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.active { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f6f0;
  border: 2px solid #27ae60;
  color: #27ae60;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.form-success a { color: var(--blue); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-dk);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--footer-dk);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.footer-logo-main {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-sub {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,.7) !important;
  font-size: .9rem;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li, .footer-col ul a {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.38); }

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { margin: 8px 16px; border-radius: 4px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 24px; }
  .hero-right { height: 280px; }
  .hero-stat-card { bottom: 16px; left: 16px; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 10px 20px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .clients-grid { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image { height: 300px; display: block; }
  .about-service-image { display: none; }

  .steps-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-left { padding: 40px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-tags { flex-direction: column; gap: 6px; }

  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }

  .checkbox-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px 16px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
