:root {
  --navy: #07124a;
  --blue: #1677db;
  --blue-dark: #0d63b6;
  --green: #69be28;
  --yellow: #ffc72c;
  --white: #ffffff;
  --text: #5d6778;
  --heading: #101828;
  --border: #e9edf5;
  --bg-light: #f7f9fc;
  --shadow: 0 14px 45px rgba(8, 15, 52, 0.14);
  --radius: 20px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--heading);
  background: var(--white);
}

img {
  max-width: 70%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(80%, var(--container));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right a {
  color: var(--white);
  opacity: 0.9;
  transition: 0.3s ease;
}

.topbar-right a:hover {
  opacity: 1;
}

/* HEADER */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e6ecf2;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.logo img {
  height: 62px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-btn {
  background: #0b66c2;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #0f172a;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid #e6ecf2;
  padding: 8px 16px 14px;
}

.mobile-menu a {
  padding: 12px 0;
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #eef2f7;
}

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

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .buy-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .logo img {
    height: 54px;
  }
}

/* HERO */
.hero-section {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #0b1120 100%);
  color: #ffffff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.10);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(56, 189, 248, 0.10);
  border-radius: 50%;
  filter: blur(35px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #cbd5e1;
  max-width: 610px;
  margin: 0 0 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
}

.feature-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #60a5fa;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 700px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-image-wrap::before {
  display: none;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

/* Large desktop */
@media (min-width: 1400px) {
  .hero-content h1 {
    font-size: 62px;
  }

  .hero-image-wrap {
    max-width: 760px;
  }
}

/* Tablet + laptop */
@media (max-width: 1199px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    padding: 72px 0 65px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image-wrap {
    max-width: 100%;
    border-radius: 24px;
  }

  .hero-image-wrap img {
    border-radius: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0 55px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 9px 15px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .hero-image-wrap {
    border-radius: 20px;
  }

  .hero-image-wrap img {
    border-radius: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-section {
    padding-top: 52px;
  }
}

/* SECTION TITLE */
.section-title-wrap {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title-wrap h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--heading);
}

.section-title-wrap p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

/* HOW IT WORKS */
.how-it-works-section {
  padding: 95px 0 100px;
  background: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(8, 15, 52, 0.05);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 15, 52, 0.09);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(22, 119, 219, 0.28);
  font-family: "Outfit", sans-serif;
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(22, 119, 219, 0.08);
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
}

.step-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--heading);
}

.step-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.how-visual-card {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  border: 1px solid #dfe9f4;
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: 0 14px 40px rgba(8, 15, 52, 0.07);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(22, 119, 219, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-visual-top h3 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--heading);
}

.how-visual-top p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.how-demo-visual {
  margin-bottom: 24px;
}

.demo-step-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(8, 15, 52, 0.10);
  background: #ffffff;
  border: 1px solid #e5edf5;
}

.demo-image {
  position: relative;
}

.demo-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f8fbff;
}

/* OVERLAY POINTS */
.demo-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 8px 20px rgba(8, 15, 52, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.demo-overlay span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-overlay p {
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.demo-overlay-1 {
  top: 14px;
  left: 14px;
}

.demo-overlay-2 {
  top: 14px;
  right: 14px;
}

.demo-overlay-3 {
  bottom: 58px;
  left: 14px;
}

.demo-overlay-4 {
  bottom: 14px;
  right: 14px;
}

/* hide repeated points block */
.how-step-points {
  display: none;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.channel-item {
  background: #fff;
  border: 1px solid #e5ecf3;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-weight: 600;
}

.channel-item i {
  color: var(--blue);
  font-size: 18px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffdf3;
  border: 1px solid #f5e9b8;
  border-radius: 16px;
  padding: 16px;
}

.privacy-note i {
  color: #d7a900;
  font-size: 20px;
}

.privacy-note p {
  margin: 0;
  color: #5d5a42;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 75px 0 80px;
  }

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

  .channel-list {
    grid-template-columns: 1fr;
  }

  .section-title-wrap h2 {
    font-size: 2.1rem;
  }

  .how-visual-top h3 {
    font-size: 24px;
  }

  .demo-overlay {
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .demo-overlay p {
    display: none;
  }

  .demo-overlay span {
    width: 30px;
    height: 30px;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(22, 119, 219, 0.25);
  }

  .demo-overlay-1 {
    top: 10px;
    left: 10px;
  }

  .demo-overlay-2 {
    top: 10px;
    right: 10px;
  }

  .demo-overlay-3 {
    bottom: 10px;
    left: 10px;
  }

  .demo-overlay-4 {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .how-visual-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .demo-step-card {
    border-radius: 18px;
  }

  .channel-item {
    padding: 13px 14px;
  }

  .privacy-note {
    align-items: flex-start;
  }
}
/* USE CASES SECTION */
.use-cases-section {
  padding: 95px 0 100px;
  background: #f8fbff;
}

.use-cases-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

/* GRID */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  box-shadow: 0 12px 35px rgba(8, 15, 52, 0.06);
  transition: 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(8, 15, 52, 0.1);
}

.large-card {
  grid-column: span 2;
}

.case-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.large-card .case-image {
  height: 310px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.case-badge.danger {
  background: #e53935;
}

.case-badge.warning {
  background: #f4b400;
  color: #1d1d1d;
}

.case-badge.info {
  background: #1677db;
}

.case-badge.alert {
  background: #8e44ad;
}

.case-content {
  padding: 24px;
}

.case-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--heading);
}

.case-card:not(.large-card) .case-content h3 {
  font-size: 21px;
}

.case-content p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.case-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}

.case-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--heading);
  font-weight: 600;
}

.case-features i {
  color: var(--green);
}

/* RIGHT SIDE */
.use-cases-side {
  position: sticky;
  top: 20px;
}

.side-panel {
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  border: 1px solid #dfe9f4;
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: 0 14px 40px rgba(8, 15, 52, 0.07);
}

.side-panel h3 {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--heading);
}

.side-panel > p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.side-points {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.side-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.side-points i {
  color: var(--blue);
  margin-top: 3px;
}

.side-highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  padding: 18px;
}

.highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.side-highlight-box h4 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--heading);
}

.side-highlight-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .use-cases-layout {
    grid-template-columns: 1fr;
  }

  .use-cases-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .use-cases-section {
    padding: 75px 0 80px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: span 1;
  }

  .case-image,
  .large-card .case-image {
    height: 240px;
  }

  .side-panel h3 {
    font-size: 24px;
  }

  .case-content h3,
  .case-card:not(.large-card) .case-content h3 {
    font-size: 22px;
  }
}

/* WHY CHOOSE SECTION */
.why-choose-section {
  padding: 95px 0 100px;
  background: #ffffff;
}

.why-intro {
  max-width: 680px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

/* LEFT GRID */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-feature-card {
  background: #ffffff;
  border: 1px solid #e7edf4;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(8, 15, 52, 0.05);
  transition: 0.3s ease;
}

.why-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 15, 52, 0.09);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
}

.blue-bg {
  background: var(--blue);
}

.green-bg {
  background: var(--green);
}

.yellow-bg {
  background: #f4b400;
  color: #1d1d1d;
}

.dark-bg {
  background: #16213e;
}

.red-bg {
  background: #df3f40;
}

.sky-bg {
  background: #4aa3ff;
}

.why-feature-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--heading);
}

.why-feature-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* RIGHT VISUAL */
.why-visual-panel {
  position: relative;
  width: 100%;
}

.why-image-frame {
  width: 100%;
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid #e8eef5;
  box-shadow: 0 20px 50px rgba(8, 15, 52, 0.08);
}

.why-image-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #f8fbff;
}

.why-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.why-overlay-card {
  position: absolute;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(8, 15, 52, 0.12);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
  max-width: 290px;
  z-index: 3;
}

.overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.why-overlay-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--heading);
}

.why-overlay-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.card-one {
  top: 28px;
  left: -22px;
}

.card-two {
  bottom: 28px;
  right: -22px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-visual-panel {
    max-width: 760px;
    margin: 0 auto;
  }

  .card-one {
    top: 18px;
    left: 18px;
  }

  .card-two {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 75px 0 80px;
  }

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

  .why-feature-card h3 {
    font-size: 20px;
  }

  .why-image-frame {
    padding: 12px;
    border-radius: 24px;
  }

  .why-image-box {
    border-radius: 18px;
  }

  .why-overlay-card {
    position: static;
    min-width: auto;
    max-width: 100%;
    margin-top: 14px;
  }

  .card-one,
  .card-two {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  .why-overlay-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .overlay-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 16px;
  }

  .why-overlay-card h4 {
    font-size: 17px;
  }

  .why-overlay-card p {
    font-size: 13px;
  }
}


/* MISSION SECTION */
.mission-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.mission-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 28px;
  padding: 34px 34px 30px;
  box-shadow: 0 14px 40px rgba(8, 15, 52, 0.06);
  max-width: 980px;
  margin: 0 auto;
}

.mission-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.mission-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b66c2, #1e88ff);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(11, 102, 194, 0.18);
}

.mission-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.mission-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: var(--heading);
  margin: 0;
  max-width: 700px;
}

.mission-content {
  padding-left: 80px;
}

.mission-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 820px;
}

.mission-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fbff;
  border: 1px solid #e7eef6;
  border-radius: 16px;
  padding: 14px 16px;
}

.mission-point i {
  color: #1e88ff;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.mission-point span {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.mission-highlight {
  background: linear-gradient(180deg, #f4f9ff 0%, #eef6ff 100%);
  border: 1px solid #dce9f7;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--heading);
  margin-bottom: 18px;
}

.mission-disclaimer {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8f3;
  border: 1px solid #f3dfcf;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
}

.mission-disclaimer strong {
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mission-section {
    padding: 55px 0 65px;
  }

  .mission-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .mission-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .mission-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 20px;
  }

  .mission-header h2 {
    font-size: 26px;
  }

  .mission-content {
    padding-left: 0;
  }

  .mission-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .mission-point span,
  .mission-highlight,
  .mission-disclaimer {
    font-size: 14px;
  }
}

.pmc-premium-trust {
  padding: 90px 20px;
  background: linear-gradient(135deg, #07111f 0%, #0f2742 50%, #061826 100%);
  color: #ffffff;
}
.pmc-perfect-for-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pmc-perfect-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.pmc-perfect-head span {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pmc-perfect-head h2 {
  color: #0f172a;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pmc-perfect-head p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.pmc-perfect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1150px;
  margin: 0 auto;
}

.pmc-perfect-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition: 0.3s ease;
}

.pmc-perfect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.pmc-perfect-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 18px;
}

.pmc-perfect-card h3 {
  color: #0f172a;
  font-size: 20px;
  margin-bottom: 12px;
}

.pmc-perfect-card p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.65;
}

.pmc-perfect-bottom {
  max-width: 950px;
  margin: 45px auto 0;
  text-align: center;
  background: #0f172a;
  color: #ffffff;
  padding: 26px;
  border-radius: 22px;
  font-size: 20px;
  line-height: 1.7;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1000px) {
  .pmc-perfect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pmc-perfect-grid {
    grid-template-columns: 1fr;
  }

  .pmc-perfect-head h2 {
    font-size: 32px;
  }

  .pmc-perfect-for-section {
    padding: 65px 18px;
  }
}

.pmc-trust-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.pmc-trust-head span {
  display: inline-block;
  background: rgba(56, 189, 248, 0.16);
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pmc-trust-head h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pmc-trust-head p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.7;
}

.pmc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.pmc-trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.pmc-trust-card i {
  font-size: 34px;
  color: #38bdf8;
  margin-bottom: 18px;
}

.pmc-trust-card h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 12px;
}

.pmc-trust-card p {
  color: #dbeafe;
  font-size: 15.5px;
  line-height: 1.65;
}

.pmc-scan-box {
  max-width: 1120px;
  margin: 45px auto 0;
  background: #ffffff;
  color: #0f172a;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.25);
}

.pmc-scan-box h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 28px;
}

.pmc-scan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pmc-scan-card {
  border-radius: 22px;
  padding: 28px;
}

.pmc-scan-card.good {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.pmc-scan-card.bad {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.pmc-scan-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.pmc-scan-card ul {
  margin: 0;
  padding-left: 20px;
}

.pmc-scan-card li {
  margin-bottom: 10px;
  color: #334155;
}

@media (max-width: 900px) {
  .pmc-trust-grid,
  .pmc-scan-grid {
    grid-template-columns: 1fr;
  }

  .pmc-trust-head h2 {
    font-size: 32px;
  }

  .pmc-premium-trust {
    padding: 65px 18px;
  }
}
.pmc-evidence-preview {
  padding: 80px 20px;
  background: #ffffff;
}

.pmc-evidence-preview-box {
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f172a, #12365c);
  color: #ffffff;
  border-radius: 34px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.pmc-evidence-label {
  display: inline-block;
  background: rgba(249, 115, 22, 0.18);
  color: #fed7aa;
  border: 1px solid rgba(254, 215, 170, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pmc-evidence-preview h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pmc-evidence-preview p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.75;
}

.pmc-evidence-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.pmc-evidence-mini-points span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.pmc-evidence-btn {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
}

/* RIGHT SIDE PHONE IMAGE */
.pmc-evidence-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 430px;
  position: relative;
}

.pmc-evidence-phone-wrap::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.25);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.pmc-evidence-phone {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.35));
  transition: transform 0.35s ease;
}

.pmc-evidence-phone:hover {
  transform: translateY(-6px) scale(1.02);
}

/* REMOVE OLD RIGHT CARD STYLE IF STILL PRESENT */
.pmc-evidence-preview-card {
  display: none;
}

@media(max-width: 850px) {
  .pmc-evidence-preview-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .pmc-evidence-preview h2 {
    font-size: 31px;
  }

  .pmc-evidence-phone-wrap {
    min-height: auto;
    margin-top: 25px;
  }

  .pmc-evidence-phone {
    max-width: 280px;
  }
}
/* PRICING SECTION */
.pricing-section {
  padding: 95px 0 100px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(8, 15, 52, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 15, 52, 0.10);
}

.featured-plan {
  border: 2px solid var(--blue);
  transform: scale(1.02);
  box-shadow: 0 18px 45px rgba(22, 119, 219, 0.14);
}

.featured-plan:hover {
  transform: scale(1.02) translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  margin-bottom: 18px;
}

.starter-tag {
  background: rgba(105, 190, 40, 0.12);
  color: #47861d;
}

.standard-tag {
  background: rgba(22, 119, 219, 0.10);
  color: var(--blue);
}

.premium-tag {
  background: rgba(223, 63, 64, 0.10);
  color: #d53839;
}

.pricing-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--heading);
}

.price-wrap {
  margin-bottom: 16px;
}

.price {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}

.price-note {
  display: inline-block;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.plan-desc {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading);
  font-weight: 500;
}

.plan-features li i {
  margin-top: 4px;
  color: var(--green);
}

.plan-features li.disabled {
  color: #95a2b3;
}

.plan-features li.disabled i {
  color: #c1cad4;
}

.plan-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.plan-btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.plan-btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.plan-btn-primary {
  background: var(--blue);
  color: #fff;
}

.plan-btn-primary:hover {
  background: var(--blue-dark);
}

.plan-btn-secondary {
  background: var(--green);
  color: #fff;
}

.plan-btn-secondary:hover {
  background: #57a423;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 75px 0 80px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-card h3 {
    font-size: 24px;
  }

  .price {
    font-size: 40px;
  }
}

/* =========================
   FAQ + CTA SECTION
========================= */

.faq-cta-section {
  padding: 95px 0 70px;
  background: #ffffff;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: start;
}

.faq-side {
  width: 100%;
  min-width: 0;
}

.left-align {
  text-align: left;
  margin: 0 0 34px 0;
}

/* =========================
   FAQ LIST
========================= */

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e8eef5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 15, 52, 0.04);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.active {
  border-color: #cfe3ff;
  box-shadow: 0 12px 30px rgba(11, 102, 194, 0.08);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(8, 15, 52, 0.08);
}

.faq-question {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--heading);
}

.faq-question i {
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-side {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .faq-cta-section {
    padding: 75px 0 55px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}


/* FOOTER */
/* FULL WIDTH FOOTER FIX */
.simple-footer {
  background: #07122f;
  color: #ffffff;
  width: 100%;
  margin: 0;
  padding: 40px 0 20px;
  text-align: center;
}

/* FORCE FULL WIDTH (IMPORTANT) */
.simple-footer .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* CTA */
.simple-footer-cta h2 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.simple-footer-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* BUTTONS */
.simple-footer-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.footer-btn.primary {
  background: #ffffff;
  color: #0b66c2;
}

.footer-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* CONTACT */
.simple-footer-contact {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* BOTTOM FULL WIDTH LINE */
.simple-footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
  padding-top: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXT */
.simple-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* LINKS */
.simple-footer-links {
  display: flex;
  gap: 16px;
}

.simple-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.simple-footer-links a:hover {
  color: #ffffff;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .simple-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #eaf6ff, #f7fbff);
  color: #1f2937;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

/* =========================
   MOBILE OPTIMIZATION FIX
========================= */

@media (max-width: 768px) {
  /* Global */
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Header */
  .header {
    padding: 6px 0;
  }

  .header-inner,
  .header-container {
    min-height: 64px;
    gap: 12px;
  }

  .logo img {
    height: 54px !important;
    width: auto;
  }

  .nav-menu,
  .nav {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .buy-btn,
  .quote-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Hero */
  .hero-section,
  .hero {
    padding-top: 50px !important;
    padding-bottom: 60px !important;
    min-height: auto;
  }

  .hero-grid,
  .hero-inner {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }

  .hero-content,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1,
  .hero h1 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .hero-content p,
  .hero p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn,
  .hero-buttons a,
  .cta-actions .cta-btn,
  .simple-footer-actions .footer-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features,
  .hero-trust,
  .cta-mini-points,
  .final-footer-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Hero image / phone / floating cards */
  .hero-visual,
  .hero-image-wrap {
    width: 100%;
    min-height: auto;
  }

  .hero-main-image,
  .hero-image-box img,
  .hero-bg-image {
    width: 100%;
    height: 280px !important;
    object-fit: cover;
    border-radius: 22px;
  }

  .floating-card,
  .floating-box,
  .alert-card,
  .scan-card,
  .card-top,
  .card-middle,
  .card-bottom {
    position: static !important;
    transform: none !important;
    max-width: 100%;
    margin-top: 12px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 100%;
  }

  .phone-screen {
    min-height: auto;
  }

  /* Titles */
  .section-title-wrap,
  .section-heading {
    margin-bottom: 30px;
    text-align: left !important;
  }

  .section-title-wrap h2,
  .section-heading h2,
  .alerts-content h2,
  .faq-intro h2,
  .cta-box h2,
  .final-footer-card h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .section-title-wrap p,
  .section-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Grids -> single column */
  .how-grid,
  .alerts-grid,
  .why-choose-layout,
  .pricing-grid,
  .faq-cta-grid,
  .use-cases-layout,
  .feature-grid,
  .footer-grid,
  .trust-items,
  .steps-wrap,
  .use-cases-grid,
  .why-features-grid,
  .channel-list,
  .contact-strip,
  .final-contact-strip,
  .why-stats-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Cards */
  .step-card,
  .case-card,
  .why-feature-card,
  .pricing-card,
  .faq-item,
  .contact-card,
  .final-contact-card,
  .why-stat-card {
    padding: 22px 18px !important;
    border-radius: 18px;
  }

  .step-card h3,
  .case-content h3,
  .why-feature-card h3,
  .pricing-card h3 {
    font-size: 22px !important;
    line-height: 1.3;
  }

  .step-card p,
  .case-content p,
  .why-feature-card p,
  .plan-desc,
  .faq-answer p {
    font-size: 14px !important;
    line-height: 1.7;
  }

  /* How it works visual */
  .how-visual-card {
    padding: 22px 18px !important;
  }

  .demo-image img {
    height: 220px !important;
  }

  .demo-overlay {
    font-size: 12px;
    padding: 6px 10px;
  }

  .demo-overlay p {
    display: none;
  }

  .how-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  /* Use cases images */
  .case-image,
  .large-card .case-image,
  .why-image-box img,
  .cta-image img {
    height: 220px !important;
  }

  /* Pricing */
  .pricing-card {
    transform: none !important;
  }

  .featured-plan,
  .pricing-card.featured {
    transform: none !important;
  }

  .price {
    font-size: 38px !important;
  }

  .plan-features li {
    font-size: 14px;
  }

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

  /* FAQ + CTA */
  .cta-side {
    position: relative !important;
    top: auto !important;
  }

  
  .faq-question {
    padding: 18px 16px;
  }

  .faq-question span {
    font-size: 16px !important;
    line-height: 1.4;
  }
}


/* =========================
   FOOTER - FINAL CLEAN VERSION
========================= */

.simple-footer {
  background: #0f172a;
  color: #e5e7eb;
  width: 100%;
  margin: 0;
  padding: 60px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.simple-footer-inner {
  width: 100%;
}

.simple-footer .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* CTA */
.simple-footer-cta {
  text-align: center;
  margin-bottom: 34px;
}

.simple-footer-cta h2 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

.simple-footer-cta p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto;
}

/* Buttons */
.simple-footer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn.primary {
  background: #ffffff;
  color: #0b66c2;
  border: 1px solid #ffffff;
}

.footer-btn.primary:hover {
  background: #f3f4f6;
  color: #0b66c2;
}

.footer-btn.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.footer-btn.outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Contact */
.simple-footer-contact {
  text-align: center;
  margin-bottom: 26px;
}

.simple-footer-contact p {
  font-size: 15px;
  color: #cbd5e1;
}

.simple-footer-contact a,
.simple-footer-contact a:link,
.simple-footer-contact a:visited,
.simple-footer-contact a:active {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
}

.simple-footer-contact a:hover {
  color: #93c5fd !important;
  text-decoration: underline !important;
}

/* Bottom */
.simple-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.simple-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

/* Footer policy links */
.simple-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.simple-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.simple-footer-links a:visited {
  color: #94a3b8;
}

.simple-footer-links a:hover {
  color: #ffffff;
}

.simple-footer-links span {
  color: #475569;
  font-size: 13px;
}

/* Tablet */
@media (max-width: 768px) {
  .simple-footer {
    padding: 42px 0 24px;
  }

  .simple-footer-cta h2 {
    font-size: 28px;
  }

  .simple-footer-cta p {
    font-size: 15px;
  }

  .simple-footer-actions {
    gap: 10px;
  }

  .simple-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .simple-footer-links {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .simple-footer {
    padding: 34px 0 20px;
  }

  .simple-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .simple-footer-cta {
    margin-bottom: 28px;
  }

  .simple-footer-cta h2 {
    font-size: 24px;
  }

  .simple-footer-cta p {
    font-size: 14px;
  }

  .simple-footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-btn {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 12px 18px;
  }

  .simple-footer-contact {
    margin-bottom: 22px;
  }

  .simple-footer-contact p {
    font-size: 14px;
  }

  .simple-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .simple-footer-links {
    justify-content: center;
    gap: 6px;
  }

  .simple-footer-links a,
  .simple-footer-links span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .simple-footer-cta h2 {
    font-size: 24px !important;
  }

  .footer-btn {
    min-height: 44px;
    font-size: 13px;
  }

  .simple-footer-links a,
  .simple-footer-links span {
    font-size: 12px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner-inner {
  width: 100%;
  max-width: 1100px;
  background: #0f172a;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}

.cookie-banner-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 700px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.primary {
  background: #ffffff;
  color: #0b66c2;
  border: 1px solid #ffffff;
}

.cookie-btn.primary:hover {
  background: #f3f4f6;
}

.cookie-btn.outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-btn.outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-link {
  color: #93c5fd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 16px;
  }

  .cookie-banner-text h3 {
    font-size: 18px;
  }

  .cookie-banner-text p {
    font-size: 13px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .cookie-btn {
    width: 100%;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-link {
    text-align: center;
  }
}
