/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --clr-bg:          #ffffff;
  --clr-surface:     #f7f8fc;
  --clr-border:      #e8eaf0;
  --clr-text:        #0d0f1a;
  --clr-muted:       #6b7280;
  --clr-accent:      #154076;
  --clr-accent-2:    #1e60b0;
  --clr-accent-glow: rgba(21, 64, 118, 0.18);
  --clr-green:       #10b981;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.12);
  --font-body:       "Roboto", "Segoe UI", system-ui, sans-serif;
  --font-heading:    "Roboto", "Segoe UI", system-ui, sans-serif;
  --max-width:       1200px;
  --section-gap:     7rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ============================================================
   LAYOUT UTIL
   ============================================================ */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.16,1,.3,1),
              transform 0.65s cubic-bezier(.16,1,.3,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 999;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { width: 110px; }
.logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--clr-muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links li a:hover {
  color: var(--clr-text);
  background: var(--clr-surface);
}

.nav-cta {
  background: var(--clr-text) !important;
  color: #fff !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: opacity 0.2s ease !important;
}
.nav-cta:hover {
  opacity: 0.85 !important;
  background: var(--clr-text) !important;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  color: var(--clr-text);
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  border: none;
  background: transparent;
}

.hamburger:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
}

/* ============================================================
   MAIN WRAPPER
   ============================================================ */
.main-container-section {
  margin-top: 80px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

/* Soft radial glow behind hero text */
.hero-section-div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 30%,
    rgba(21, 64, 118, 0.07) 0%,
    rgba(30, 96, 176, 0.05) 45%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-section-div > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(21,64,118,0.1), rgba(30,96,176,0.1));
  border: 1px solid rgba(21, 64, 118, 0.25);
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-section-head-text {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.gradient-animate-text {
  display: block;
  background: linear-gradient(
    270deg,
    #154076,
    #1e60b0,
    #2a8fd4,
    #154076
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-section-sub-text {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--clr-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.68;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.75rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn:focus-visible {
  outline: 3px solid rgba(21, 64, 118, 0.45);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--clr-text);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: #b0b4c8;
  background: var(--clr-surface);
}

/* ============================================================
   HERO METRICS STRIP
   ============================================================ */
.hero-metrics {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-metric-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 150px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-metric-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-metric-label {
  font-size: 0.82rem;
  color: var(--clr-muted);
  font-weight: 500;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section-wrap-section {
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-top: 3rem;
  margin-bottom: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.features-section-title-p {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 2rem;
}

.features-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.features-section-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

/* Alternate image left/text right every other row */
.features-section-container:nth-child(even) {
  direction: rtl;
}
.features-section-container:nth-child(even) > * {
  direction: ltr;
}

.features-section-left-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.9rem;
  row-gap: 0.85rem;
}

.features-section-left-wrap i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.15rem;   /* fixed — ignores parent font-size */
  flex-shrink: 0;
  background: rgba(21, 64, 118, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-accent);
  margin-bottom: 0;
}

.features-div-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.3;
  margin-bottom: 0;
  flex: 1;
  min-width: 220px;
}

.features-div-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--clr-muted);
  line-height: 1.75;
  width: 100%;
}

.features-section-right-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  background: var(--clr-surface);
  padding: 1.25rem;
}
.features-section-right-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ============================================================
   PRIVACY / INTEGRATION SECTION
   ============================================================ */
.privacy-personal-wrapper-section {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 5rem 1.5rem;
  text-align: center;
}

.privacy-personal-head {
  margin-bottom: 3rem;
}

.privacy-personal-head-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-text);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.privacy-personal-subtitle {
  font-size: clamp(1rem, 1.75vw, 1.2rem);
  color: var(--clr-muted);
  max-width: 560px;
  margin-inline: auto;
}

.privacy-personal-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.privacy-personal-bottom img {
  width: 55%;
  max-width: 600px;
  min-width: 280px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.07));
}

@media (max-width: 767px) {
  .privacy-personal-bottom img {
    width: 85%;
  }
}

/* Perks grid inside "Talk To Your CRM" section */
.crm-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.crm-perk-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.crm-perk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 64, 118, 0.28);
}

/* Icon badge — fixed size so it never grows with surrounding text */
.crm-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(21, 64, 118, 0.08);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.crm-perk-icon i {
  font-size: 1.1rem;   /* controlled size — no inheritance bleed */
  color: var(--clr-accent);
  line-height: 1;
  display: block;
}

.crm-perk-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.crm-perk-desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .crm-perks-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .crm-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   USE CASES SECTION
   ============================================================ */
.use-cases-wrapper-section {
  padding: var(--section-gap) clamp(1.5rem, 5vw, 4.5rem);
}

.use-case-title-wrap {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.use-case-head-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.2;
}

.use-cases-wrap-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.use-cases-cards {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.use-cases-cards:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,64,118,0.3);
}

.use-cases-cards i {
  font-size: 1.6rem;
  color: var(--clr-accent);
  background: rgba(21,64,118,0.08);
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.use-case-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.use-cases-secondaty-title {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

.use-cases-card-bottom-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: 1.5rem;
  display: block;
  letter-spacing: 0.02em;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  background: #fff;
  color: #111318;
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(21, 64, 118, 0.04) 0%, transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(17, 19, 24, 0.03) 0%, transparent 42%);
  pointer-events: none;
}

.final-cta-title {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.final-cta-subtitle {
  position: relative;
  font-size: clamp(0.95rem, 1.75vw, 1.15rem);
  color: rgba(17, 19, 24, 0.72);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.66;
}

.final-cta-section .hero-buttons {
  position: relative;
  margin-bottom: 0;
}

.final-cta-section .btn-primary {
  background: #111318;
  color: #fff;
}
.final-cta-section .btn-secondary {
  border-color: rgba(17, 19, 24, 0.35);
  color: #111318;
}
.final-cta-section .btn-secondary:hover {
  background: rgba(17, 19, 24, 0.06);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 5.5rem 1.5rem;
  background: #fff;
}

.contact-section-content {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.65rem;
  align-items: stretch;
}

.contact-section-left {
  background: linear-gradient(180deg, #f8f9fd 0%, #f3f5fb 100%);
  color: var(--clr-text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(21, 64, 118, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5f6f87;
  margin-bottom: 0.75rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: #4e5667;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-meta p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f4555;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.contact-trust-list {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(21, 64, 118, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f4555;
  font-size: 0.93rem;
  line-height: 1.4;
}

.contact-trust-list li i {
  width: 20px;
  text-align: center;
  color: #365e8d;
}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid rgba(21, 64, 118, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 14px 34px rgba(21, 64, 118, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.contact-form-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5f6f87;
  margin-bottom: 0.25rem;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1b2c44;
  margin-bottom: 0.4rem;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #3f4555;
  margin-top: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd5df;
  background: #fff;
  border-radius: 10px;
  padding: 0.78rem 0.9rem;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--clr-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7b818d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #154076;
  box-shadow: 0 0 0 4px rgba(21, 64, 118, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form .btn {
  margin-top: 0.8rem;
  align-self: flex-start;
}

.contact-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 12, 24, 0.24);
}

.contact-status {
  font-size: 0.88rem;
  color: #365e8d;
  min-height: 1.2rem;
  margin-top: 0.4rem;
}

/* ============================================================
   TESTIMONIALS / CAROUSEL
   ============================================================ */
.slider-container {
  padding: 0 0 5rem;
  overflow: hidden;
  position: relative;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.slider-container-header-wrap {
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}

.slider-top-div-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-text);
}

.slider-track {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
  padding: 2rem 0 1rem;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 400px;
  margin: 0 14px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 3rem;
  color: var(--clr-accent);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(21, 64, 118, 0.25);
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #154076, #1e60b0);
  border: 2px solid var(--clr-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.author-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-muted);
  margin: 0;
}

/* ============================================================
   SIMPLE FOOTER
   ============================================================ */
.site-footer-simple {
  background: var(--clr-text);
  color: rgba(255,255,255,0.9);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-simple-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-simple-links {
  display: flex;
  gap: 1.5rem;
}
.footer-simple-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-simple-links a:hover {
  color: #fff;
}

/* ============================================================
   TABLET — 768–1023px
   ============================================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .features-section-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .use-cases-wrap-div {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .use-cases-cards { min-height: 300px; }
  .hero-section-head-text { font-size: 3.5rem; }
}

/* ============================================================
   MOBILE — under 768px
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-gap: 4.5rem; }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .site-header::after {
    content: "";
    position: fixed;
    inset: 80px 0 0;
    background: rgba(6, 10, 24, 0.44);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
    gap: 0.4rem;
    border: 1px solid #dce2eb;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    text-align: center;
    padding: 0.78rem 1rem;
    border-radius: 12px;
    font-size: 1.08rem;
    font-weight: 600;
  }
  .nav-links li a:active {
    transform: scale(0.99);
  }
  .nav-links li:last-child {
    margin-top: 0.35rem;
  }
  .nav-links li .nav-cta {
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
    font-size: 1rem;
  }
  .nav-links.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
  }
  .hamburger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #d9dee7;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-size: 1.4rem;
  }
  .hamburger.is-active {
    background: #0e294b;
    color: #fff;
    border-color: #0e294b;
  }

  .nav-container {
    padding: 0.95rem 0;
  }
  .logo img {
    width: 140px;
  }

  /* Hero */
  .hero-section-div {
    padding: 3.5rem 1rem 3rem;
    min-height: auto;
  }
  .hero-metrics { gap: 1rem; }
  .hero-metric-card {
    min-width: 130px;
    padding: 1rem 1.25rem;
  }

  /* Features */
  .features-section-wrap-section {
    padding: 0 1rem;
    margin-block: 4rem;
    gap: 3.5rem;
  }
  .features-section-container {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.75rem;
  }
  .features-section-container:nth-child(even) {
    direction: ltr;
  }

  /* Use cases */
  .use-cases-wrapper-section {
    padding: var(--section-gap) 1rem;
  }
  .use-cases-wrap-div {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .use-cases-cards { min-height: auto; }

  /* Carousel cards */
  .testimonial-card { width: 300px; }

  /* Privacy section */
  .privacy-personal-head-title { font-size: 1.6rem; }
  .privacy-personal-subtitle { font-size: 1rem; }

  /* Contact section */
  .contact-section {
    padding: 4.25rem 1rem;
  }
  .contact-section-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-section-left,
  .contact-form {
    padding: 1.45rem;
  }
  .contact-title {
    margin-bottom: 0.85rem;
    line-height: 1.18;
  }
  .contact-subtitle {
    margin-bottom: 1.25rem;
    line-height: 1.62;
  }
  .contact-meta p {
    margin-bottom: 0.55rem;
  }
  .contact-trust-list {
    margin-top: 1.2rem;
    padding-top: 1rem;
    gap: 0.7rem;
  }
  .contact-form {
    gap: 0.35rem;
  }
  .contact-form-title {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
  }
  .contact-form label {
    margin-top: 0.35rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.72rem 0.85rem;
  }
  .contact-form textarea {
    min-height: 110px;
  }
  .contact-section-left {
    position: static;
    top: auto;
  }
  .contact-form .btn {
    margin-top: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}
