/* ==========================================================================
   Good Morning Logistics — Custom Theme
   Homepage stylesheet. No Divi dependency. Design tokens + component CSS.
   ========================================================================== */

:root {
  /* Design tokens — locked brand colors */
  --navy: #0A1F44;
  --navy-2: #12294f;
  --navy-deep: #071531;
  --orange: #E8621A;
  --orange-2: #ff7a2e;
  --white: #FFFFFF;
  --gray-bg: #F4F6F9;
  --gray-border: #E3E7ED;
  --text-body: #4B5566;
  --text-muted: #8A93A3;

  --maxw: 1240px;
  --radius: 8px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.gml-home-body { margin: 0; background: var(--white); }
.gml-home {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.gml-home img { max-width: 100%; display: block; }
.gml-home a { text-decoration: none; color: inherit; }
.gml-home ul { margin: 0; padding: 0; list-style: none; }
.gml-home .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.gml-home h1, .gml-home h2, .gml-home h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}
.gml-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.gml-home .btn-primary { background: var(--orange); color: var(--white); }
.gml-home .btn-primary:hover { background: var(--orange-2); }
.gml-home .btn-outline-dark { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.55); }
.gml-home .btn-outline-dark:hover { background: rgba(255,255,255,0.16); }
.gml-home .btn-navy { background: var(--navy); color: var(--white); }
.gml-home .btn-navy:hover { background: var(--navy-2); }
.gml-home .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.gml-home .btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ---------------- Utility bar ---------------- */
.gml-utility {
  background: var(--navy);
  color: #cfd7e6;
  font-size: 13px;
}
.gml-utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}
.gml-utility .left, .gml-utility .right { display: flex; align-items: center; gap: 22px; }
.gml-utility a { color: #cfd7e6; }
.gml-utility a:hover { color: var(--white); }
.gml-utility .icon { opacity: .85; margin-right: 6px; }
.gml-utility .quote-btn {
  background: var(--orange);
  color: var(--white);
  padding: 9px 16px;
  font-weight: 600;
  font-size: 12.5px;
  border-radius: 4px;
  font-family: var(--font-head);
}

/* ---------------- Nav bar ---------------- */
.gml-navbar { background: var(--white); border-bottom: 1px solid var(--gray-border); }
.gml-navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.gml-brand { display: flex; align-items: center; gap: 12px; }
.gml-brand img { height: 46px; width: auto; }
.gml-brand .wordmark { font-family: var(--font-head); line-height: 1.15; }
.gml-brand .wordmark .l1 { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: .3px; }
.gml-brand .wordmark .l2 { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }

.gml-nav { display: flex; align-items: center; gap: 28px; }
.gml-nav a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.gml-nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.gml-nav a:hover { color: var(--orange); }
.gml-search-wrap { position: relative; }
.gml-search-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 19px; cursor: pointer; margin-left: 4px;
  background: none; border: none; padding: 6px; width: 32px; height: 32px;
}
.gml-search-panel {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 50;
  background: var(--white); border: 1px solid var(--gray-border); border-radius: 8px;
  box-shadow: 0 6px 20px rgba(10,31,68,.15);
  display: flex; align-items: center; padding: 6px; gap: 6px;
  width: 260px;
}
.gml-search-panel[hidden] { display: none; }
.gml-search-panel input {
  flex: 1; border: none; font-size: 14px; padding: 8px 10px; color: var(--navy); border-radius: 4px;
}
.gml-search-panel input:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 1px;
}
.gml-search-panel button[type=submit] {
  background: var(--orange); color: var(--white); border: none; border-radius: 6px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex: none;
}
.gml-navbar .wrap { position: relative; gap: 18px; }
.gml-nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--navy); padding: 6px; margin: -6px 0 -6px -4px;
  align-items: center; justify-content: center;
}
.gml-nav-toggle .material-symbols-outlined { font-size: 26px; }

/* ---------------- Mobile nav drawer (Mobile Header Option 1) ---------------- */
.gml-mobile-nav {
  position: fixed; top: 0; right: 0; height: 100%; width: min(78vw, 320px);
  background: var(--white); z-index: 1001;
  box-shadow: -8px 0 24px rgba(10,31,68,.18);
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.gml-mobile-nav.is-open { transform: translateX(0); }
.gml-mobile-nav nav { display: flex; flex-direction: column; padding: 84px 8px 24px; }
.gml-mobile-nav nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--navy);
  padding: 15px 20px; border-bottom: 1px solid var(--gray-border);
  min-height: 44px; display: flex; align-items: center;
}
.gml-mobile-nav nav a.active { color: var(--orange); }
.gml-mobile-nav nav a:hover, .gml-mobile-nav nav a:focus-visible { background: var(--gray-bg); }
.gml-mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(7,21,49,.45); z-index: 1000;
  opacity: 0; transition: opacity .25s ease;
}
.gml-mobile-nav-backdrop.is-open { opacity: 1; }
.gml-mobile-nav-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--navy); cursor: pointer;
}

/* ---------------- Hero ---------------- */
.gml-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(7,21,49,.97) 0%, rgba(10,31,68,.93) 42%, rgba(10,31,68,.55) 68%, rgba(10,31,68,.28) 100%), url('../images/hero-truck-sunset.jpg') center 42% / cover no-repeat;
  overflow: hidden;
}
.gml-hero .wrap { position: relative; z-index: 2; width: 100%; padding-top: 56px; padding-bottom: 56px; }
.gml-hero .kicker {
  color: var(--orange-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.gml-hero h1 {
  color: var(--white);
  font-size: 46px;
  font-weight: 700;
  max-width: 620px;
  margin-bottom: 18px;
}
.gml-hero .sub {
  color: #dbe2ee;
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}
.gml-hero .cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 230px));
  gap: 12px;
  margin-bottom: 6px;
}
.gml-hero .cta-grid .btn { width: 100%; }
.gml-hero-side {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  color: var(--white);
}
.gml-hero-side .tagline {
  font-family: 'Segoe Script', 'Brush Script MT', cursive;
  color: var(--orange-2);
  font-size: 22px;
  margin-bottom: 210px;
  transform: rotate(-4deg);
}
.gml-hero-side .mc {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.gml-hero-side .licensed { font-size: 12.5px; color: #b9c3d6; margin-bottom: 12px; }
.gml-hero-side .fmcsa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(0,0,0,.2);
}

/* ---------------- Icon strip ---------------- */
.gml-icon-strip { background: var(--gray-bg); border-bottom: 1px solid var(--gray-border); }
.gml-icon-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 26px 24px;
}
.gml-icon-strip .item {
  display: flex;
  gap: 12px;
  padding: 0 18px;
  border-left: 1px solid var(--gray-border);
}
.gml-icon-strip .item:first-child { border-left: none; padding-left: 0; }
.gml-icon-strip .icon { color: var(--navy); font-size: 22px; flex: none; margin-top: 2px; }
.gml-icon-strip .item { align-items: flex-start; }
.gml-icon-strip .item > span:last-child { display: flex; flex-direction: column; }
.gml-icon-strip .t { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
@media (min-width: 981px) { .gml-icon-strip .t { white-space: nowrap; } }
.gml-icon-strip .d { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ---------------- Freight partner section ---------------- */
.gml-partner { padding: 72px 0; background: var(--white); }
.gml-partner .grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 56px; align-items: flex-start; }
.gml-partner h2 { font-size: 30px; margin-bottom: 18px; }
.gml-partner p.lead { font-size: 15.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 26px; }
.gml-partner .badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; margin-bottom: 30px; }
.gml-partner .badge { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--navy); }
.gml-partner .badge .icon { color: var(--orange); font-size: 19px; }

.gml-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gml-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(10,31,68,.08); }
.gml-card .photo { height: 150px; background-size: cover; background-position: center; }
.gml-card .body { background: var(--navy); padding: 22px 20px 24px; }
.gml-card .body h3 { color: var(--white); font-size: 15.5px; letter-spacing: .3px; margin-bottom: 10px; }
.gml-card .body p { color: #c3cbdb; font-size: 13px; line-height: 1.55; margin: 0 0 18px; }
.gml-card .body .btn { font-size: 12.5px; padding: 10px 16px; width: 100%; }

/* ---------------- Bottom CTA band ---------------- */
.gml-band {
  background: linear-gradient(90deg, rgba(7,21,49,.94) 0%, rgba(10,31,68,.9) 60%, rgba(10,31,68,.82) 100%), url('../images/band-road-dark.jpg') center 60% / cover no-repeat;
  padding: 44px 0;
}
.gml-band .grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr auto; gap: 34px; align-items: center; }
.gml-band .item { display: flex; gap: 14px; }
.gml-band .item .icon { color: var(--orange-2); font-size: 22px; margin-top: 2px; flex: none; }
.gml-band .item h4 { color: var(--white); font-family: var(--font-head); font-size: 15px; margin-bottom: 6px; }
.gml-band .item p { color: #b9c3d6; font-size: 13px; line-height: 1.5; margin: 0; }
.gml-band .cta-side .btn { margin-top: 12px; }
.gml-band .brand-side { display: flex; align-items: center; gap: 10px; justify-self: end; }
.gml-band .brand-side img { height: 46px; }
.gml-band .brand-side .wordmark .l1 { color: var(--white); font-size: 15px; font-weight: 700; font-family: var(--font-head); }
.gml-band .brand-side .wordmark .l1 span { color: var(--orange-2); }
.gml-band .brand-side .wordmark .l2 { color: #9fabc4; font-size: 9px; letter-spacing: 1.3px; font-weight: 600; }

/* ---------------- Footer ---------------- */
.gml-footer { background: var(--navy-deep); color: #aab5cc; padding: 56px 0 26px; }
.gml-footer .grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.gml-footer .about .wordmark .l1 { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.gml-footer .about .wordmark .l1 span { color: var(--orange-2); }
.gml-footer .about p { font-size: 13px; line-height: 1.7; margin: 14px 0 0; color: #9aa5bd; max-width: 300px; }
.gml-footer h5 { color: var(--white); font-family: var(--font-head); font-size: 14px; margin-bottom: 16px; }
.gml-footer li { margin-bottom: 10px; font-size: 13.5px; }
.gml-footer a:hover { color: var(--white); }
.gml-footer .bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7c88a3;
  flex-wrap: wrap;
  gap: 10px;
}
.gml-footer .bottom a { color: #98a3ba; margin-left: 18px; }

/* ---------------- Mobile footer — Mobile Footer Option 1 "Clean" (accordion) ---------------- */
.gml-footer-mobile { display: none; background: var(--navy-deep); color: #aab5cc; padding: 40px 0 24px; }
.gml-footer-mobile .brand { text-align: center; padding: 0 24px 28px; }
.gml-footer-mobile .brand img { height: 44px; margin: 0 auto 12px; }
.gml-footer-mobile .brand .wordmark .l1 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--white); }
.gml-footer-mobile .brand .wordmark .l1 span { color: var(--orange-2); }
.gml-footer-mobile .brand .tagline { font-size: 12.5px; color: #9aa5bd; margin: 6px 0 0; letter-spacing: .3px; }

.gml-footer-mobile .accordion-row { border-top: 1px solid rgba(255,255,255,.12); }
.gml-footer-mobile .accordion-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.12); }
.gml-footer-mobile summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 24px;
  min-height: 44px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--white);
}
.gml-footer-mobile summary::-webkit-details-marker { display: none; }
.gml-footer-mobile summary::after {
  content: '+';
  font-size: 20px; font-weight: 400; color: var(--orange-2); line-height: 1;
  flex: none; margin-left: 12px;
}
.gml-footer-mobile details[open] summary::after { content: '\2212'; }
.gml-footer-mobile .panel { padding: 0 24px 20px; }
.gml-footer-mobile .panel ul { display: flex; flex-direction: column; gap: 12px; }
.gml-footer-mobile .panel a { font-size: 14px; color: #c3cbdb; min-height: 24px; display: inline-flex; align-items: center; }
.gml-footer-mobile .panel a:hover, .gml-footer-mobile .panel a:focus-visible { color: var(--white); }
.gml-footer-mobile .contact-list li { display: flex; align-items: center; font-size: 14px; color: #c3cbdb; }
.gml-footer-mobile .contact-list .icon { font-size: 18px; margin-right: 10px; color: var(--orange-2); }
.gml-footer-mobile .bottom { text-align: center; padding: 26px 24px 0; font-size: 12px; color: #8894ac; line-height: 1.6; }
.gml-footer-mobile .bottom p { margin: 0 0 6px; }
.gml-footer-mobile .bottom .legal a { color: #9aa5bd; }
.gml-footer-mobile .bottom .legal a:hover { color: var(--white); }

/* ==========================================================================
   Responsive — mobile is purpose-built, not desktop squeezed
   ========================================================================== */
@media (max-width: 980px) {
  .gml-partner .grid { grid-template-columns: 1fr; }
  .gml-cards { grid-template-columns: 1fr 1fr; }
  .gml-band .grid { grid-template-columns: 1fr 1fr; }
  .gml-band .brand-side { display: none; }
  .gml-icon-strip .wrap { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .gml-icon-strip .item:nth-child(4) { border-left: none; }
}

@media (max-width: 700px) {
  /* Mobile Header Option 1 "Modern" — no utility bar at all on mobile */
  .gml-utility { display: none; }
  .gml-navbar .wrap { height: 62px; gap: 14px; }
  .gml-brand { gap: 9px; }
  .gml-brand img { height: 34px; }
  .gml-brand .wordmark .l1 { font-size: 13px; }
  .gml-brand .wordmark .l2 { font-size: 11px; letter-spacing: .5px; }
  .gml-nav { display: none; }
  .gml-search-wrap { margin-left: auto; }
  .gml-search-icon { font-size: 22px; }
  .gml-search-panel { width: 220px; right: -8px; }
  .gml-nav-toggle {
    display: flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
  }

  .gml-hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .gml-hero .wrap { padding-top: 34px; padding-bottom: 34px; }
  .gml-hero h1 { font-size: 30px; max-width: 100%; }
  .gml-hero .sub { font-size: 15px; max-width: 100%; }
  .gml-hero .cta-grid { grid-template-columns: 1fr; }
  .gml-hero-side { position: static; transform: none; text-align: left; margin-top: 4px; padding: 0 24px 32px; }
  .gml-hero-side .tagline { display: none; }

  .gml-icon-strip .wrap { grid-template-columns: 1fr 1fr; padding: 20px; gap: 18px; }
  .gml-icon-strip .item { border-left: none; padding: 0; }

  .gml-partner { padding: 44px 0; }
  .gml-partner h2 { font-size: 24px; }
  .gml-partner .badges { grid-template-columns: 1fr 1fr; }
  .gml-cards { grid-template-columns: 1fr; }

  .gml-band .grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }

  .gml-footer { display: none; }
  .gml-footer-mobile { display: block; }
}

@media (max-width: 420px) {
  .gml-icon-strip .wrap { grid-template-columns: 1fr; }
  .gml-footer .grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Inner pages — reusable components (Phase 2). Same tokens as the homepage.
   ========================================================================== */

/* Inner-page hero band */
.gml-page-hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 52px 0 46px;
}
.gml-page-hero h1 { color: var(--white); font-size: 34px; margin-bottom: 10px; }
.gml-page-hero p { color: #c3cbdb; font-size: 16px; max-width: 640px; margin: 0; line-height: 1.6; }

/* Generic content sections */
.gml-content { padding: 60px 0; }
.gml-content.alt { background: var(--gray-bg); }
.gml-content h2 { font-size: 27px; margin-bottom: 16px; }
.gml-content h3 { font-size: 19px; margin-bottom: 10px; }
.gml-content p { font-size: 15.5px; line-height: 1.7; color: var(--text-body); margin: 0 0 16px; }
.gml-content ul.checklist { margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.gml-content ul.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-body); }
.gml-content ul.checklist .material-symbols-outlined { color: var(--orange); font-size: 20px; flex: none; margin-top: 1px; }

.gml-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.gml-content-grid.reverse { direction: rtl; }
.gml-content-grid.reverse > * { direction: ltr; }
.gml-content-grid img { border-radius: var(--radius); width: 100%; }

/* Generic icon-card grid (services/industries listings, no photo required) */
.gml-simple-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gml-simple-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gml-simple-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gml-simple-card {
  background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: 0 2px 10px rgba(10,31,68,.05);
}
.gml-simple-card .material-symbols-outlined { color: var(--orange); font-size: 30px; margin-bottom: 14px; display: block; }
.gml-simple-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.gml-simple-card p { font-size: 14px; margin: 0; color: var(--text-muted); line-height: 1.6; }

/* Simplified bottom CTA band (no blog) */
.gml-simple-band {
  background: linear-gradient(100deg, rgba(7,21,49,.96) 0%, rgba(10,31,68,.92) 100%);
  padding: 56px 0; text-align: center;
}
.gml-simple-band h2 { color: var(--white); font-size: 26px; margin-bottom: 10px; }
.gml-simple-band p { color: #c3cbdb; font-size: 15.5px; margin: 0 0 22px; }

/* ---- Forms (Phase 2 custom form pages — no Divi contact-form module) ---- */
.gml-form-section { padding: 56px 0 68px; }
.gml-form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 40px; box-shadow: 0 2px 14px rgba(10,31,68,.06); }
.gml-form-wrap h2 { font-size: 22px; margin-bottom: 6px; }
.gml-form-wrap > p { color: var(--text-muted); font-size: 14.5px; margin: 0 0 26px; }
.gml-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.gml-form .row.full { grid-template-columns: 1fr; }
.gml-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.gml-form label .req { color: var(--orange); }
.gml-form input[type=text], .gml-form input[type=email], .gml-form input[type=tel], .gml-form select, .gml-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-border); border-radius: 6px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--navy); background: var(--white);
}
.gml-form input:focus, .gml-form select:focus, .gml-form textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
.gml-form textarea { resize: vertical; min-height: 100px; }
.gml-form .captcha-row { display: flex; align-items: center; gap: 12px; margin: 6px 0 22px; }
.gml-form .captcha-row .q { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 14px; }
.gml-form .captcha-row input { width: 80px; text-align: center; }
.gml-form button[type=submit] { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
.gml-form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; color: #256029; border-radius: 6px; padding: 16px 18px; font-size: 14.5px; margin-bottom: 20px; }
.gml-form-error { display: none; background: #fdecea; border: 1px solid #f5b3ae; color: #8a1f11; border-radius: 6px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 16px; }
.gml-form.is-submitted .gml-form-fields { display: none; }
.gml-form.is-submitted .gml-form-success { display: block; }

@media (max-width: 700px) {
  .gml-page-hero { padding: 38px 0 34px; }
  .gml-page-hero h1 { font-size: 25px; }
  .gml-page-hero p { font-size: 14.5px; }
  .gml-content { padding: 40px 0; }
  .gml-content-grid { grid-template-columns: 1fr; gap: 26px; }
  .gml-content-grid.reverse { direction: ltr; }
  .gml-simple-cards, .gml-simple-cards.cols-2, .gml-simple-cards.cols-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gml-simple-band { padding: 40px 0; }
  .gml-simple-band h2 { font-size: 21px; }
  .gml-form-wrap { padding: 22px 18px; }
  .gml-form .row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .gml-form .row > div { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .gml-simple-cards, .gml-simple-cards.cols-2, .gml-simple-cards.cols-4 { grid-template-columns: 1fr; }
}
