/* ================================================
   AMANA DIGITAL USA — style.css
   Brand: Red #E61E26 | Navy #1F355E | White #FFFFFF
   ================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── CSS VARIABLES ── */
:root {
  --red: #E61E26;
  --red-dark: #C41920;
  --navy: #1F355E;
  --navy-dark: #182847;
  --white: #ffffff;
  --gray-light: #F5F7FA;
  --gray-mid: #E4E8EF;
  --text-dark: #1A1A1A;
  --text-mid: #3D4F6B;
  --text-light: #6B7280;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 1160px;
  --section-pad: 120px 0;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section--gray {
  background: var(--gray-light);
}

.section--navy {
  background: var(--navy);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--text-light); }

.highlight { color: var(--red); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 30, 38, 0.08);
  border: 1.5px solid rgba(230, 30, 38, 0.18);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.eyebrow--navy {
  color: var(--navy);
  background: rgba(31, 53, 94, 0.07);
  border-color: rgba(31, 53, 94, 0.15);
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.eyebrow-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.location-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.location-flags img {
  width: 22px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn--primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(230, 30, 38, 0.28);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 30, 38, 0.38);
}

.btn--secondary {
  background: #ffffff;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn--secondary:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 30, 38, 0.28);
}

.btn--navy {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(31, 53, 94, 0.22);
}

.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1.5px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 12px 0;
}

.navbar__logo img {
  height: 144px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__link {
  padding: 7px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--navy);
  background: var(--gray-light);
}

.navbar__cta {
  margin-left: 16px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1.5px solid var(--gray-mid);
  padding: 16px 24px 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .navbar__link {
  padding: 13px 4px;
  border-bottom: 1px solid var(--gray-mid);
  border-radius: 0;
  font-size: 1rem;
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
  padding: 15px;
}

/* ── HERO ── */
.hero {
  background: #ffffff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--gray-light);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 580px;
}

.hero__title {
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge__dot--green  { background: #22c55e; }
.badge__dot--red    { background: var(--red); }
.badge__dot--navy   { background: var(--navy); }

/* Hero Dashboard Widget */
.hero__visual {
  position: relative;
}

.dashboard {
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
}

.live-indicator::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.stat-box {
  text-align: center;
  padding: 12px 8px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-mid);
}

.stat-box__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.stat-box__trend {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #22c55e;
  margin-top: 2px;
}

.stat-box__label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
}

.dashboard__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-row__label {
  font-size: 0.78rem;
  color: var(--text-mid);
  width: 90px;
  flex-shrink: 0;
}

.bar-row__track {
  flex: 1;
  height: 7px;
  background: var(--gray-mid);
  border-radius: 4px;
  overflow: hidden;
}

.bar-row__fill {
  height: 100%;
  border-radius: 4px;
}

.bar-row__fill--red   { background: var(--red); }
.bar-row__fill--navy  { background: var(--navy); }
.bar-row__fill--blue  { background: #0ea5e9; }

.bar-row__value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  width: 44px;
  text-align: right;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #ffffff;
  border-top: 1.5px solid var(--gray-mid);
  border-bottom: 1.5px solid var(--gray-mid);
  padding: 16px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.trust-bar__divider {
  width: 1px;
  height: 22px;
  background: var(--gray-mid);
  flex-shrink: 0;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.trust-logo {
  padding: 6px 16px;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: #8893a7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar__item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stats-bar__number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-bar__number span {
  color: var(--red);
  font-size: 1.6rem;
}

.stats-bar__label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

.stats-bar__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ade80;
  margin-top: 4px;
}

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* ── STEPS SECTION ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.step {
  padding: 36px 28px;
  border-right: 1.5px solid var(--gray-mid);
}

.step:last-child {
  border-right: none;
}

.step__number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 10px;
}

.step__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(230, 30, 38, 0.08);
  border: 1.5px solid rgba(230, 30, 38, 0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  background: var(--red);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  flex: 1;
  margin-bottom: 16px;
}

.service-card__result {
  padding: 11px 14px;
  background: rgba(31, 53, 94, 0.05);
  border: 1.5px solid rgba(31, 53, 94, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.service-card__result::before {
  content: '→';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── CASE STUDIES PREVIEW ── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-card__head {
  background: var(--navy);
  padding: 20px 22px;
}

.case-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-card__head h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 6px;
  line-height: 1.35;
}

.case-card__accent {
  height: 3px;
  background: var(--red);
  margin-top: 14px;
  width: 40px;
  border-radius: 2px;
}

.case-card__metrics {
  display: flex;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1.5px solid var(--gray-mid);
}

.metric {
  flex: 1;
  text-align: center;
  padding: 11px 6px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-mid);
}

.metric__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.metric__label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 2px;
}

.case-card__body {
  padding: 16px 22px 20px;
}

.case-card__body p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.why-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(230, 30, 38, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── HERO TRUST & SCROLL ── */
.hero__trust {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.cta-microcopy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.3px;
}

.hero__scroll-cue {
  margin-top: 60px;
  text-align: center;
}

.hero__scroll-cue p {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.scroll-arrow {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--red);
  animation: bounce 2s infinite;
  font-weight: bold;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ── MID-PAGE CTA ── */
.section--mid-cta {
  background: var(--gray-light);
  padding: 80px 0;
}

.mid-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.mid-cta__inner h2 {
  margin-bottom: 16px;
}

.mid-cta__inner p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

/* ── CTA BENEFITS ── */
.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px auto 48px;
  align-items: flex-start;
  max-width: 400px;
}

.benefit {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.2px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(230, 30, 38, 0.09);
}

.cta-section::after {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-section p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-section__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  border: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-btn svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo img {
  height: 120px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 260px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 5px 13px;
  background: rgba(230, 30, 38, 0.15);
  border: 1.5px solid rgba(230, 30, 38, 0.28);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ff8b8e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.footer__col h5 {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.18s;
}

.footer__col a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__cta-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
}

.footer__cta-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer__cta-box .btn {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff !important;
  background: var(--red);
}

.footer__cta-box .btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 30, 38, 0.38);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.footer__bottom span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --section-pad: 72px 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero::before { display: none; }

  .problem-grid,
  .steps-grid,
  .services-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }

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

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

  .step {
    border-right: none;
    border-bottom: 1.5px solid var(--gray-mid);
  }

  .step:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    padding: 56px 0 52px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .eyebrow-flags {
    flex-direction: column;
    gap: 4px;
  }

  .mid-cta__inner {
    padding: 0 12px;
  }

  .cta-benefits {
    max-width: 100%;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  .dashboard__stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-bar__divider { display: none; }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 960px) {
  .problem-grid,
  .services-grid,
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ── SECTION MODIFIER HELPERS ── */
.heading--white { color: #ffffff; }
.text--white-muted { color: rgba(255, 255, 255, 0.62); }

/* ── CONTACT FORM (CTA section) ── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 16px 18px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  backdrop-filter: blur(4px);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(255,255,255,.65); }
.contact-form__field select { color: rgba(255,255,255,.85); }
.contact-form__field select option { background: #1F355E; color: #fff; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.contact-form__field textarea { resize: vertical; }
.contact-form__submit { margin-top: 24px; }
.contact-form__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-top: 16px;
  font-weight: 500;
}
.contact-form__success {
  background: rgba(22,163,74,.15);
  border: 1.5px solid rgba(22,163,74,.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #4ade80;
  font-size: 0.9rem;
  text-align: center;
}
.contact-form__error {
  background: rgba(230,30,38,.15);
  border: 1.5px solid rgba(230,30,38,.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fca5a5;
  font-size: 0.9rem;
  text-align: center;
}

/* WordPress body reset */
body.amana-site {
  margin: 0 !important;
  padding: 0 !important;
}
body.amana-site #page,
body.amana-site #content,
body.amana-site #primary,
body.amana-site .site-content,
body.amana-site .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}
body.amana-site .entry-content > p:empty { display: none; }

/* Navbar logo img */
.navbar__logo-img {
  height: 144px;
  width: auto;
  object-fit: contain;
}
.footer__logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

/* Responsive contact form */
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
