/* ===========================
   FREELANCERTALKS — style.css
   =========================== */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A0F1E;
  --navy-mid:    #121A30;
  --navy-light:  #1A2540;
  --accent:      #C8A96E;
  --accent-light:#E8D5A8;
  --light:       #F5F3EE;
  --white:       #FFFFFF;
  --text:        #1C2035;
  --text-muted:  #5A5E6E;
  --border:      rgba(200,169,110,0.2);
  --border-light:rgba(0,0,0,0.07);
  --radius:      8px;
  --transition:  0.25s ease;
  --shadow:      0 4px 24px rgba(10,15,30,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 640px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: opacity var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.85; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity var(--transition);
  margin-top: 0.5rem;
}
.btn-submit:hover { opacity: 0.85; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-secondary-ghost {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color var(--transition), border-color var(--transition);
}
.btn-secondary-ghost:hover { color: var(--accent); border-color: var(--accent); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: opacity var(--transition);
}
.whatsapp-btn:hover { opacity: 0.88; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta-btn {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  border: 2px solid var(--accent);
}
.nav-links .nav-cta-btn:hover {
  background: transparent;
  color: var(--accent) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
#hero {
  background: var(--navy);
  min-height: 100vh;
  padding: 100px 2rem 5rem;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.hero-left { padding-top: 1rem; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-left h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-left h1 em { color: var(--accent); font-style: italic; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-stat { display: flex; align-items: center; gap: 1rem; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  min-width: 70px;
  line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }

.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ---- HERO FORM BOX ---- */
.hero-form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ---- FORMS ---- */
.lead-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }
.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='%235A5E6E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.form-success {
  background: #EAF7F0;
  border: 1px solid #5DB483;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2E7D52;
  font-weight: 500;
}
.form-error {
  background: #FEF0F0;
  border: 1px solid #E57373;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #C62828;
}

/* ---- PROOF STRIP ---- */
.proof-strip {
  background: var(--light);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.5rem 2rem;
}
.proof-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.proof-flags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-flags span { font-size: 14px; color: var(--text-muted); }

/* ---- PROBLEM ---- */
#problem { padding: 6rem 2rem; background: var(--white); }
.problem-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.problem-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.problem-grid p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.dark-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.dark-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.dark-box p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 0; }

.pain-list { display: flex; flex-direction: column; gap: 0.9rem; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
}
.dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- SERVICES ---- */
#services { padding: 6rem 2rem; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
}
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.service-result {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--light);
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-block;
}

/* ---- WHO ---- */
#who { padding: 6rem 2rem; background: var(--navy); }
#who .section-header h2 { color: var(--white); }
#who .section-sub { color: rgba(255,255,255,0.5); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.industry-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.industry-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ---- APPROACH ---- */
#approach { padding: 6rem 2rem; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border-light);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- TESTIMONIALS ---- */
#testimonials { padding: 6rem 2rem; background: var(--light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}
.testi-result {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.testi-meta { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; }
.testi-biz { font-size: 12px; color: var(--text-muted); }

/* ---- CONTACT SECTION ---- */
#contact { padding: 6rem 2rem; background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-left h2 em { color: var(--accent); font-style: italic; }
.contact-left > p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { font-size: 16px; margin-top: 2px; }
.contact-item a,
.contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--accent); }

.whatsapp-duo { display: flex; flex-direction: column; gap: 4px; }
.whatsapp-duo a { font-size: 14px; color: rgba(255,255,255,0.7); }
.whatsapp-duo a:hover { color: #25D366; }

.avail-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.contact-form-styled {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
}

/* ---- INDUSTRIES MORE BUTTON (mobile) ---- */
.industries-more-wrap {
  display: none;
  text-align: center;
  margin-top: 1rem;
}
.industries-more-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: rgba(255,255,255,0.7);
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.industries-more-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.more-arrow { transition: transform var(--transition); display: inline-block; }
.industries-more-btn.expanded .more-arrow { transform: rotate(180deg); }

/* ---- FOOTER SOCIALS ---- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(200,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.08);
}

/* ---- FOOTER BOTTOM ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy-left { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-copy-right { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-copy-right a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer-copy-right a:hover { opacity: 0.75; }
footer {
  background: #06090F;
  border-top: 1px solid rgba(200,169,110,0.1);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-links-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-center ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-center a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-center a:hover { color: var(--accent); }

.footer-right { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-right a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-right a:hover { color: var(--accent); }
.footer-markets { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 0.5rem; }

.footer-copy-left a.footer-brand-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer-copy-left a.footer-brand-link:hover { opacity: 0.75; }

/* footer-bottom now defined above */


/* ================================================
   RESPONSIVE — TABLET (768px – 1023px)
   ================================================ */
@media (max-width: 1023px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }
  .hero-left h1 { font-size: clamp(32px, 5vw, 52px); }
  .hero-sub { max-width: 100%; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 40%; }

  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .step { border-bottom: 1px solid var(--border-light); }
  .step:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .step:nth-child(even) { border-right: none; }
  .step:nth-last-child(-n+2) { border-bottom: none; }

  .testi-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

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


/* ================================================
   RESPONSIVE — MOBILE (< 768px)
   ================================================ */
@media (max-width: 767px) {

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { width: 100%; text-align: center; padding: 12px 20px; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 90px 1.25rem 3.5rem; min-height: auto; }
  .hero-inner { gap: 2rem; }
  .hero-left h1 { font-size: clamp(30px, 8vw, 42px); }
  .hero-stats { flex-direction: column; }
  .hero-stat { flex: 1 1 100%; }
  .hero-contact-row { flex-direction: column; align-items: flex-start; }
  .whatsapp-btn, .btn-secondary-ghost { width: 100%; text-align: center; justify-content: center; }

  /* Hero Form */
  .hero-form-box { padding: 1.5rem; }

  /* Proof */
  .proof-inner { flex-direction: column; gap: 1rem; }
  .proof-flags { gap: 1rem; }

  /* Problem */
  #problem { padding: 4rem 1.25rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Services */
  #services { padding: 4rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem; }

  /* Who */
  #who { padding: 4rem 1.25rem; }
  .industries-grid { grid-template-columns: 1fr; }

  /* Approach */
  #approach { padding: 4rem 1.25rem; }
  .steps-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    gap: 1rem;
  }
  .step {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    border-right: 1px solid var(--border-light) !important;
    border-bottom: 1px solid var(--border-light) !important;
  }

  /* Testimonials */
  #testimonials { padding: 4rem 1.25rem; }
  .testi-grid { grid-template-columns: 1fr; }

  /* Contact */
  #contact { padding: 4rem 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-styled { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Industries more button — show on mobile */
  .industries-more-wrap { display: block; }
  .industry-card--hidden { display: none; }
  .industry-card--hidden.visible { display: block; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 1rem 1.25rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
}
