/* ═══ FONTS ═══ */
@font-face { font-family: 'CoHeadline'; src: url('../fonts/CoHeadline_Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'CoHeadline'; src: url('../fonts/CoHeadline_Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'CoText'; src: url('../fonts/CoText_Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/Lato-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/Lato-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

/* ═══ AH BRAND COLOURS ═══ */
:root {
  --ah-red: #eb3915;
  --ah-blue: #00aeef;
  --ah-green: #89d450;
  --ah-pink: #f472d1;
  --ah-yellow: #ffc61b;
  --ah-grey: #e8eaeb;
  --ah-navy: #262262;
  --ah-purple: #432649;
  --white: #fff;
  --text-body: #444;
  --light-bg: #f0f5fa;
}

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

body {
  font-family: 'Lato', 'CoText', sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  border-left: 5px solid var(--ah-blue);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══ BUTTONS ═══ */
.btn-green {
  background: var(--ah-green); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-family: 'CoHeadline', sans-serif; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.2s; text-decoration: none;
}
.btn-green:hover { filter: brightness(0.9); transform: translateY(-1px); }

.btn-blue {
  background: var(--ah-blue); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-family: 'CoHeadline', sans-serif; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.2s; text-decoration: none;
}
.btn-blue:hover { filter: brightness(0.9); transform: translateY(-1px); }

/* ═══ HEADER ═══ */
.site-header {
  padding: 12px 0; background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 44px; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; gap: 24px; margin-left: 20px; }
.nav-links a { color: var(--ah-navy); font-size: 13px; font-weight: 700; }
.nav-links a:hover { color: var(--ah-green); }
.header-icons { display: flex; gap: 6px; }
.h-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.h-icon svg { width: 14px; height: 14px; fill: var(--white); }
.h-icon.green { background: var(--ah-green); }
.h-icon.blue { background: var(--ah-blue); }
.h-icon.navy { background: var(--ah-navy); }

/* ═══ HERO ═══ */
.hero { text-align: center; padding: 56px 0 48px; background: var(--white); }
.hero h1 {
  font-family: 'CoHeadline', sans-serif; font-size: 38px;
  font-weight: 700; color: var(--ah-navy); margin-bottom: 44px;
}
.hero-cards { display: flex; justify-content: center; gap: 48px; max-width: 860px; margin: 0 auto; }
.hero-card { flex: 1; text-align: center; max-width: 220px; }
.hero-card-icon { width: 80px; height: 80px; margin: 0 auto 16px; }
.hero-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.hero-card p { font-size: 14px; font-weight: 700; color: var(--ah-navy); line-height: 1.45; }

/* ═══ FEATURE SECTIONS ═══ */
.feature-section { padding: 50px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-text h2 {
  font-family: 'CoHeadline', sans-serif; font-size: 34px;
  text-align: center;
  font-weight: 700; line-height: 1.15; margin-bottom: 18px;
}
.feature-text p { font-size: 14px; text-align: center; var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.feature-text .btn-green,
.feature-text .btn-blue { display: block; width: fit-content; margin: auto; font-size: 14px; padding: 11px 26px; }

/* Brand shape photo frame */
.feature-image { display: flex; justify-content: center; position: relative; }
.brand-frame { position: relative; width: 100%; }
.brand-frame .shape-accent { position: absolute; border-radius: 50%; }
.feature-section#how-it-works .brand-frame { height: 275px; }
.feature-section#how-it-works .brand-frame img { height: 100%; width: 100%; object-fit: cover; }

/* Section variants */
.sec-light { background: var(--light-bg); }
.sec-light .feature-text h2 { color: var(--ah-navy); }
.sec-light .feature-text h2 .accent { color: var(--ah-green); }
.sec-light .brand-frame .shape-accent.a1 { width: 50px; height: 50px; background: var(--ah-green); top: -15px; right: 30px; }
.sec-light .brand-frame .shape-accent.a2 { width: 30px; height: 80px; background: var(--ah-blue); bottom: 20px; left: -15px; border-radius: 50px; }

.sec-white { background: var(--white); }
.sec-white .feature-text h2 { color: var(--ah-green); }
.sec-white .feature-grid { direction: rtl; }
.sec-white .feature-grid > * { direction: ltr; }
.sec-white .brand-frame img { border-radius: 25% 25% 25% 25% / 50% 50% 50% 50%; }
.sec-white .brand-frame .shape-accent.a1 { width: 75px; height: 75px; background: var(--ah-yellow); bottom: -10px; left: 40px; }
.sec-white .brand-frame .shape-accent.a2 { width: 100px; height: 50px; background: var(--ah-green); top: 10px; right: -18px; border-radius: 50px; }

.sec-dark { background: var(--ah-navy); background-size: cover; position: relative;}
.sec-dark .feature-text h2 { color: var(--ah-blue); }
.sec-dark .brand-frame img { border-radius: inherit; }  
.sec-dark .shape-accent.center { width: 100px; height: 100px;
    background: #cdeffb; border-radius: 50px;
    position: absolute; left: 0; right: 0;
    bottom: -50px; margin: auto; }

/* ═══ TESTIMONIAL ═══ */
.testimonial { padding: 72px 0; background: var(--white); text-align: center; }
.testimonial-inner { max-width: 600px; margin: 0 auto; position: relative; padding: 32px 0; }
.q-mark { font-family: 'CoHeadline', sans-serif; font-size: 72px; line-height: 1; position: absolute; }
.q-mark.open { color: var(--ah-blue); top: -8px; left: -20px; }
.q-mark.close { color: var(--ah-blue); bottom: 20px; right: -20px; }
.testimonial-quote {
  font-family: 'CoHeadline', sans-serif; font-size: 20px;
  font-weight: 700; color: var(--ah-navy); line-height: 1.5;
  margin-bottom: 20px; padding: 0 24px; font-style: italic;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--text-body); }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; }
.dot.active { background: var(--ah-blue); }

/* ═══ CONTACT CTA ═══ */
.contact-cta { padding: 72px 0; text-align: center; background: var(--light-bg); }
.contact-cta h2 {
  font-family: 'CoHeadline', sans-serif; font-size: 34px;
  font-weight: 700; color: var(--ah-green); margin-bottom: 12px;
}
.contact-cta .sub { font-size: 14px; color: var(--text-body); margin-bottom: 28px; }
.contact-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 16px; height: 16px; fill: var(--white); }
.contact-icon.phone { background: var(--ah-green); }
.contact-icon.email { background: var(--ah-blue); }
.contact-row span { font-size: 17px; font-weight: 700; color: var(--ah-navy); }
.contact-or { font-size: 13px; color: #888; margin: 16px 0 12px; }

/* ═══ FOOTER ═══ */
.site-footer { background-color: var(--ah-navy); color: var(--white); padding: 44px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; text-align: center; margin-bottom: 28px; }
.footer-col h3 {
  font-family: 'CoHeadline', sans-serif; font-size: 24px; font-weight: 700;
  margin-bottom: 14px;
  text-underline-offset: 4px; color: var(--ah-white);
}
.footer-col a { display: block; font-size: 14px; margin-bottom: 6px; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.social-icons { display: flex; justify-content: center; gap: 10px; margin-top: 2px; }
.s-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.s-icon.li { background: var(--ah-blue); }
.s-icon.yt { background: var(--ah-red); }
.s-icon svg { width: 14px; height: 14px; fill: var(--white); }
.copyright { text-align: center; font-size: 14px; padding-top: 20px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .hero-cards { flex-direction: column; align-items: center; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 28px; }
  .sec-white .feature-grid { direction: ltr; }
  .feature-text h2 { font-size: 26px; }
  .brand-frame { width: 300px; height: 220px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
