/* ============================================================
   SENDIFY LTD — Main Stylesheet
   Professional business website for Meta advertising platform
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --primary:      #1a56db;
  --primary-dark: #1e429f;
  --primary-light:#3f83f8;
  --accent:       #ebf5ff;
  --dark:         #111827;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-300:     #d1d5db;
  --gray-100:     #f3f4f6;
  --light:        #f9fafb;
  --white:        #ffffff;
  --success:      #0e9f6e;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl:    0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --transition:   all 0.25s ease;
  --max-width:    1200px;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray-700); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
.section--gray { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }
.section--blue { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p   { font-size: 1.1rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.section--dark  .section-header p,
.section--blue  .section-header p  { color: rgba(255,255,255,.75); }
.section--dark  .section-header h2,
.section--blue  .section-header h2 { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* --- Badge / Label --- */
.badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.navbar__logo span { color: var(--dark); }
.navbar__logo:hover { color: var(--primary-dark); text-decoration: none; }

.navbar__menu {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 768px) { .navbar__menu { display: flex; } }

.navbar__menu a {
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  color: var(--gray-700);
}
.navbar__menu a:hover,
.navbar__menu a.active { color: var(--primary); background: var(--accent); }

.navbar__cta { margin-left: .75rem; }

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) { .navbar__hamburger { display: none; } }

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 1rem 0;
}
.navbar__mobile.open { display: flex; }
@media (min-width: 768px) { .navbar__mobile { display: none !important; } }

.navbar__mobile a {
  padding: .75rem 1.25rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.navbar__mobile a:hover { color: var(--primary); background: var(--accent); }
.navbar__mobile .btn { margin: 1rem 1.25rem 0; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__tag {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 50px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.25);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero__trust-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  font-size: .7rem;
  color: var(--white);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p  { font-size: .95rem; color: var(--gray-500); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: steps;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  position: relative;
}
.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 { margin-bottom: .5rem; }
.step p   { font-size: .95rem; color: var(--gray-500); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-card h3 { margin-bottom: .75rem; font-size: 1.3rem; }
.service-card p  { color: var(--gray-500); }
.service-card ul { margin-top: 1rem; }
.service-card ul li {
  padding: .4rem 0;
  color: var(--gray-700);
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.service-card ul li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.7;
}
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.testimonial-card__role { font-size: .8rem; color: var(--gray-500); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2   { color: var(--white); margin-bottom: 1rem; }
.cta-banner p    { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-banner__btns{ display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-split__img {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.legal-card {
  background: var(--light);
  border: 1px solid var(--gray-300);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1rem;
}
.legal-card h3 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--primary); }
.legal-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; }
.legal-card dt { font-weight: 600; font-size: .9rem; color: var(--gray-700); white-space: nowrap; }
.legal-card dd { font-size: .9rem; color: var(--dark); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.value-card__icon { font-size: 1.75rem; margin-bottom: .75rem; }
.value-card h4    { margin-bottom: .4rem; }
.value-card p     { font-size: .9rem; color: var(--gray-500); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .contact-layout { grid-template-columns: 3fr 2fr; gap: 3.5rem; } }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-box h2 { margin-bottom: .5rem; }
.contact-form-box > p { color: var(--gray-500); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group textarea { height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.show { display: block; }

.contact-info-box { display: flex; flex-direction: column; gap: 1.5rem; }

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.info-card h4     { font-size: .9rem; color: var(--gray-500); font-weight: 500; margin-bottom: .25rem; }
.info-card p, .info-card a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}
.info-card a:hover { color: var(--primary); }

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 0 5rem;
}
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  font-size: 1.35rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
  color: var(--primary-dark);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 { margin: 1.5rem 0 .5rem; font-size: 1.1rem; }
.legal-content p, .legal-content li { font-size: .97rem; color: var(--gray-700); line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .4rem; }
.legal-content a { color: var(--primary); }
.legal-content .last-updated {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__brand { }
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: .75rem;
}
.footer__brand p { font-size: .9rem; line-height: 1.7; }
.footer__brand address { font-style: normal; font-size: .85rem; line-height: 1.8; margin-top: .75rem; color: rgba(255,255,255,.55); }

.footer__col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer__col ul li { margin-bottom: .5rem; }
.footer__col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer__col ul li a:hover { color: var(--white); }

.footer__col--contact p, .footer__col--contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  display: block;
  margin-bottom: .5rem;
}
.footer__col--contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__bottom a { color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
}
.stat-bar__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stat-item__label { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

/* ============================================================
   COMPLIANCE BANNER
   ============================================================ */
.compliance-banner {
  background: var(--accent);
  border: 1px solid rgba(26,86,219,.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.compliance-banner__icon { font-size: 1.75rem; flex-shrink: 0; }
.compliance-banner h4 { margin-bottom: .25rem; color: var(--primary-dark); }
.compliance-banner p  { font-size: .9rem; color: var(--primary-dark); opacity: .85; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }

@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .hero    { padding: 4rem 0 3.5rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .cta-banner { padding: 3.5rem 0; }
}
