/* ==========================================
   FlyScout Website
   Company : UnityWelt
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ==========================================
   FlyScout Design System
========================================== */

:root {
  /* Brand Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;

  --secondary: #7c3aed;

  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Backgrounds */
  --bg: #f8fafc;
  --surface: #ffffff;

  /* Text */
  --text: #0f172a;
  --text-light: #475569;
  --text-muted: #94a3b8;

  /* Border */
  --border: #e2e8f0;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 650px;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

/* ===========================
   Hero
=========================== */

.hero {
  padding: 10px 0 70px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 55%, #e5f0ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  margin-top: -25px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.hero-content {
  flex: 1;
  padding-top: 40px;
}

.hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  max-width: 560px;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.hero-content {
  flex: 1;
  padding-top: 40px;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  margin-top: -10px;
  filter: drop-shadow(0 35px 40px rgba(37, 99, 235, 0.18));
}

.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--glow-blue);
  filter: blur(95px);
  top: -180px;
  left: -160px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--glow-purple);
  filter: blur(90px);
  right: -120px;
  bottom: -160px;
}

.playstore-btn {
  display: inline-block;

  transition: 0.3s;
}

.playstore-btn img {
  height: 62px;
  width: auto;
  display: block;
}

.playstore-btn:hover {
  transform: translateY(-3px);
}

header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .download-btn {
    display: none;
  }
}

/* =======================
   Features
======================= */

.features {
  padding: 100px 0;

  background: #fff;
}

.section-heading {
  text-align: center;

  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 46px;

  margin-bottom: 15px;
}

.section-heading p {
  max-width: 650px;

  margin: auto;

  color: var(--text-light);
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.feature-card {
  background: #fff;

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 35px;

  transition: 0.35s;

  position: relative;

  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.12);

  border-color: #bfdbfe;
}

.feature-icon {
  width: 68px;

  height: 68px;

  border-radius: 18px;

  background: #dbeafe;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 24px;
}

.feature-icon svg {
  width: 30px;

  height: 30px;

  color: #2563eb;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);

  line-height: 1.7;
}

.feature-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, #2563eb, #7c3aed);

  transform: scaleX(0);

  transition: 0.35s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* ======================
   Showcase
====================== */

.showcase {
  padding: 120px 0;
}

.showcase-container {
  display: flex;

  align-items: center;

  gap: 80px;
}

.showcase-image {
  flex: 1;

  text-align: center;
}

.showcase-image img {
  max-width: 360px;
  transition: 0.35s;

  width: 100%;
}

.showcase-image img:hover {
  transform: translateY(-8px) scale(1.02);
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 44px;

  margin-bottom: 20px;
}

.showcase-content p {
  color: var(--text-light);

  line-height: 1.8;

  margin-bottom: 30px;
}

.showcase-content ul {
  list-style: none;
}

.showcase-content li {
  margin-bottom: 18px;

  font-size: 18px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 35px;
}

.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: 0.3s;
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.showcase-item h4 {
  margin-bottom: 4px;
  font-size: 18px;
}

.showcase-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
}

.section-label {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: var(--primary-light);

  color: var(--primary);

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 18px;

  letter-spacing: 0.08em;
}

.feature-points {
  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-top: 35px;
}

.point {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 18px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 18px;

  transition: 0.35s;
}

.point:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow);
}

.point-icon {
  width: 38px;

  height: 38px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--primary-light);

  color: var(--primary);

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;
}

.point h4 {
  margin-bottom: 4px;

  font-size: 18px;
}

.point p {
  margin: 0;

  color: var(--text-light);

  font-size: 15px;
}

.showcase-image img {
  max-width: 360px;

  transition: 0.35s;
}

.showcase-image img:hover {
  transform: translateY(-8px);
}

.showcase,
.search-showcase,
.booking-showcase {
  position: relative;
  overflow: hidden;
}

.showcase::before,
.search-showcase::before,
.booking-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
  pointer-events: none;
}

.search-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;
}

.search-content {
  flex: 1;
}

.search-image {
  flex: 1;

  text-align: center;
}

.search-image img {
  width: 100%;

  max-width: 360px;

  transition: 0.35s;
}

.search-image img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ==========================
   Stats
========================== */

.stats {
  padding: 35px 0 70px;

  background: var(--bg);
}

.stats-container {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}

.stat-card {
  background: #fff;

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 28px 20px;

  text-align: center;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.stat-card h3 {
  color: var(--primary);

  font-size: 34px;

  margin-bottom: 8px;

  font-weight: 700;
}

.stat-card p {
  color: var(--text-light);

  font-size: 15px;
}

.booking-showcase {
  padding: 120px 0;
  background: #f8fafc;
}

.booking-container {
  display: flex;

  align-items: center;

  gap: 80px;
}

.booking-image {
  flex: 1;

  text-align: center;
}

.booking-image img {
  width: 100%;

  max-width: 360px;

  transition: 0.35s;
}

.booking-image img:hover {
  transform: translateY(-8px) scale(1.02);
}

.booking-content {
  flex: 1;
}

.booking-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  pointer-events: none;
}

.search.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  pointer-events: none;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  pointer-events: none;
}

/* ==========================
   Scroll Animation
========================== */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Download CTA
========================== */

.download-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #7c3aed);
  color: #fff;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 48px;
  margin: 18px 0;
}

.cta-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

.cta-action {
  text-align: center;
}

.cta-action small {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.download-cta .playstore-btn img {
  height: 72px;
  transition: 0.35s;
}

.download-cta .playstore-btn:hover img {
  transform: scale(1.05);
}

.download-cta .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ==========================
   Footer
========================== */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer-description {
  max-width: 360px;
  line-height: 1.8;
  color: #94a3b8;

  margin-bottom: 28px;
}

.footer-column h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 16px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #2563eb;
  transform:translateY(-4px) scale(1.05);
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
}

/* =====================================================
   FlyScout Background System v2.0
===================================================== */

:root {
  --section-light: #ffffff;

  --section-soft: #f8fbff;

  --glow-blue: rgba(37, 99, 235, 0.07);

  --glow-purple: rgba(124, 58, 237, 0.06);
}

/* Common Section */

.showcase,
.search-showcase,
.booking-showcase,
.features,
.download-cta {
  position: relative;

  overflow: hidden;
}

/* Soft Dot Texture */

.showcase::before,
.search-showcase::before,
.booking-showcase::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.1;
  pointer-events: none;
}

/* Alternate Background */

.showcase {
  background: var(--section-soft);
}

.search-showcase {
  background: var(--section-light);
}

.booking-showcase {
  background: var(--section-soft);
}

.features {
  background: var(--section-light);
}

/* =====================================================
   FlyScout Image System v2.0
===================================================== */

/* Common Phone Images */

.hero-image img,
.showcase-image img,
.search-image img,
.booking-image img {
  display: block;
  width: 100%;
  max-width: 330px;
  margin: auto;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
  filter: drop-shadow(0 28px 38px rgba(37, 99, 235, 0.12));
}

/* Hero Image */

.hero-image img{
    width:100%;
    max-width:320px;
    margin-top:-10px;
    filter:drop-shadow(
        0 35px 40px rgba(37,99,235,.18)
    );
}

/* Hover Effect */

.hero-image img:hover,
.showcase-image img:hover,
.search-image img:hover,
.booking-image img:hover {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 42px 52px rgba(37, 99, 235, 0.2));
}

/* Image Containers */

.hero-image,
.showcase-image,
.search-image,
.booking-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =====================================================
   FlyScout Typography System v2.0
===================================================== */

/* Section Label */

.section-label {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Common Headings */

.showcase-content h2,
.search-content h2,
.booking-content h2,
.section-heading h2,
.cta-content h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}

/* Common Paragraph */

.showcase-content p,
.search-content p,
.booking-content p,
.section-heading p,
.cta-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-light);
}

/* Section Heading */

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-heading p {
  max-width: 650px;
  margin: 0 auto;
}

/* Feature Titles */

.point h4,
.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Feature Text */

.point p,
.feature-card p {
  font-size: 16px;
  line-height: 1.7;
}

/* =====================================================
   FlyScout Card System v2.0
===================================================== */

/* Common Cards */

.stat-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Premium Hover */

.stat-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.12);
}

/* Top Gradient Line */

.stat-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}

.stat-card:hover::before,
.feature-card:hover::before {
  transform: scaleX(1);
}

/* Icons */

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  transition: 0.35s;
}

.feature-card:hover .feature-icon {
  background: #2563eb;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: #2563eb;
  transition: 0.35s;
}

.feature-card:hover .feature-icon svg {
  color: #fff;
}

/* =====================================================
   FlyScout Header System v2.0
===================================================== */

/* Sticky Header */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Scroll Effect */

header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Navbar */

.navbar {
  background: transparent;
}

.navbar .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo-image {
  height: 52px;
  transition: 0.35s;
}

.logo:hover .logo-image {
  transform: scale(1.04);
}

/* Navigation */

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Animated Underline */

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Download Button */

.download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(37,99,235,.20);
    transition:all .3s ease;
}

.download-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 30px rgba(37,99,235,.28);
}

/* =====================================================
   FlyScout Footer System v2.0
===================================================== */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

/* Soft Background Glow */

.footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(120px);
  top: -220px;
  right: -180px;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* ==========================
   Brand
========================== */

.footer-logo {
  width: 180px;

  margin-bottom: 24px;
}

.footer-brand h3 {
  color: #fff;

  font-size: 30px;

  line-height: 1.25;

  margin-bottom: 20px;
}

.footer-description {
  max-width: 360px;

  line-height: 1.9;

  color: #94a3b8;

  margin-bottom: 28px;
}

/* ==========================
   Social
========================== */

.footer-social {
  display: flex;

  gap: 14px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
}

.footer-social i{
    font-size:18px;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-5px);
}

/* ==========================
   Columns
========================== */

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 22px;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 16px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ==========================
   Trust Section
========================== */

.footer-trust {
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust p {
  max-width: 760px;
  margin: auto;
  text-align: center;
  line-height: 1.9;
  color: #94a3b8;
}

/* ==========================
   Bottom
========================== */

.footer-bottom {
  padding: 26px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .footer {
    padding-top: 70px;
  }

  .footer-logo {
    width: 155px;
  }

  .footer-brand h3 {
    font-size: 26px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }
}

/* =====================================================
   ABOUT PAGE
===================================================== */

.page-hero{
    padding:90px 0 70px;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 55%,#e5f0ff 100%);
    text-align:center;
}

.page-hero h1{
    font-size:56px;
    line-height:1.15;
    margin:20px 0;
    color:var(--text);
}

.page-hero p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:var(--text-light);
}

.about-section{
    padding:120px 0;
}

.about-section.light{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:60px;
    align-items:center;
}

.about-grid h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:22px;
}

.about-grid p{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:18px;
}

.about-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 40px rgba(15,23,42,.06);
}

.about-card h3{
    font-size:28px;
    margin-bottom:18px;
    color:var(--text);
}

.about-card p{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:28px;
}

.about-card .btn{
    width:100%;
}

.about-card:hover{
    transform:translateY(-8px);
    transition:.35s ease;
    box-shadow:0 28px 55px rgba(37,99,235,.10);
}

/* Responsive */

@media(max-width:992px){

    .page-hero{
        padding:110px 0 90px;
    }

    .page-hero h1{
        font-size:42px;
    }

    .page-hero p{
        font-size:16px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-card{
        text-align:center;
    }

}

@media(max-width:576px){

    .page-hero h1{
        font-size:34px;
    }

    .about-grid h2{
        font-size:32px;
    }

    .about-section{
        padding:70px 0;
    }

    .about-card{
        padding:50px;
    }

}

/* =========================
   Page Hero
========================= */

.page-hero{
    padding:120px 0 90px;
    background:#f4f8ff;
    text-align:center;
}

.page-hero-container{
    max-width:820px;
    margin:auto;
}

.page-hero h1{
    font-size:56px;
    line-height:1.1;
    margin:20px 0;
}

.page-hero h1 span{
    color:var(--primary-color);
}

.page-hero p{
    max-width:720px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
}

.hero-badges{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-badge-item{
    background:#fff;
    border:1px solid #e8edf7;
    border-radius:50px;
    padding:14px 24px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.hero-badge-item i{
    color:var(--primary-color);
}

/* =========================
   Privacy
========================= */

.privacy-section{
    padding:100px 0;
}

.privacy-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:70px;
    align-items:center;
}

.privacy-content h2{
    margin:20px 0 25px;
}

.privacy-content p{
    margin-bottom:22px;
    line-height:1.9;
}

.privacy-card{
    background:#fff;
    border:1px solid #edf1f8;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 50px rgba(20,35,90,.06);
}

.privacy-card h3{
    margin-bottom:24px;
}

.privacy-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.privacy-card li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:18px;
    line-height:1.6;
}

.privacy-card i{
    color:var(--primary-color);
    margin-top:4px;
}

/*====================================
Privacy Feature Cards
====================================*/

.privacy-features{
    padding:100px 0;
    background:#f8fbff;
}

.privacy-feature-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.privacy-feature-card{
    background:#fff;
    border:1px solid #edf2fa;
    border-radius:22px;
    padding:35px 28px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(15,35,90,.05);
}

.privacy-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,35,90,.10);
}

.privacy-feature-card h3{
    margin:22px 0 14px;
    font-size:22px;
}

.privacy-feature-card p{
    line-height:1.8;
}

.privacy-feature-card .feature-icon{
    width:64px;
    height:64px;
    border-radius:18px;
}

/*=========================
Trusted Services
=========================*/

.service-card{
    background:#fff;
    border:1px solid #edf2fa;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 45px rgba(15,35,90,.06);
}

.service-card h3{
    margin-bottom:30px;
}

.service-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.service-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.service-item i{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#eef5ff;
    color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.service-item h4{
    margin-bottom:6px;
    font-size:18px;
}

.service-item p{
    margin:0;
    line-height:1.7;
}

/*=========================
Privacy Rights
=========================*/

.privacy-rights{
    padding:100px 0;
}

.rights-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.right-card{
    background:#fff;
    border:1px solid #edf2fa;
    border-radius:22px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 15px 35px rgba(15,35,90,.05);
    transition:.35s;
}

.right-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(15,35,90,.10);
}

.right-card i{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:22px;
    border-radius:18px;
    background:#eef5ff;
    color:var(--primary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.right-card h3{
    margin-bottom:14px;
    font-size:22px;
}

.right-card p{
    line-height:1.8;
    margin:0;
}

/*====================================
Privacy CTA
====================================*/

.privacy-cta{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
    text-align:center;
}

.privacy-cta-container{
    max-width:760px;
    margin:auto;
}

.privacy-cta .section-label{
    color:#93c5fd;
}

.privacy-cta h2{
    color:#fff;
    margin:20px 0;
    font-size:48px;
    line-height:1.2;
}

.privacy-cta p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
    margin-bottom:40px;
}

.privacy-cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.privacy-cta .btn{
    min-width:180px;
}
