:root{
  --navy:#071b36;
  --navy2:#0c2b52;

  --red:#d71d28;
  --red-dark:#a9141e;
  --red-light:#fff0f1;
  --red-soft:#fff6f7;

  --blue:#d71d28;

  --teal:#00a69c;
  --green:#16a36a;
  --gold:#e9b949;

  --ink:#132238;
  --muted:#637083;

  --bg:#f5f8fc;
  --white:#fff;

  --line:#e2e8f0;

  --shadow:0 18px 50px rgba(8,28,55,.10);
  --shadow-red:0 12px 30px rgba(215,29,40,.22);

  --radius:20px;
}


/* =========================================================
   RESET
========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:14px;
  line-height:1.65;
}

img{
  max-width:100%;
}

button,
input,
textarea,
select{
  font-family:inherit;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}


/* =========================================================
   TOP ANNOUNCEMENT BAR
========================================================= */

.announcement{
  background:#d71d28;
  color:#fff;
  font-size:11px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.announcement-inner{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.announcement strong{
  color:#fff;
  font-weight:900;
}

.announcement-links{
  display:flex;
  align-items:center;
  gap:15px;
}

.announcement a{
  color:#fff;
  font-weight:700;
  transition:.2s;
}

.announcement a:hover{
  color:#ffe1e3;
}


/* =========================================================
   SITE HEADER
========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:.2s;
}

.site-header.scrolled{
  box-shadow:0 8px 30px rgba(7,27,54,.10);
  border-color:var(--line);
}

.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:25px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:190px;
}

.brand-logo{
  width:155px;
  height:52px;
  object-fit:contain;
  object-position:left center;
}

.brand-fallback{
  display:none;
}

.brand-fallback strong{
  display:block;
  font-family:Manrope,Arial,sans-serif;
  font-size:17px;
}

.brand-fallback small{
  display:block;
  font-size:10px;
  color:var(--red);
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav{
  display:flex;
  align-items:center;
  gap:5px;
  margin-left:auto;
}

.main-nav>a,
.nav-dropdown>button{
  border:0;
  background:none;
  font:inherit;
  font-weight:700;
  font-size:12px;
  color:#43536a;
  padding:11px 12px;
  border-radius:10px;
  cursor:pointer;
  transition:.2s;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-dropdown>button:hover{
  background:var(--red-light);
  color:var(--red);
}

.nav-dropdown{
  position:relative;
}

.nav-dropdown>button span{
  font-size:14px;
  margin-left:3px;
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu{
  display:none;
  position:absolute;
  top:45px;
  left:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:8px;
  width:215px;
  box-shadow:var(--shadow);
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:9px;
  font-size:12px;
  font-weight:700;
  transition:.2s;
}

.dropdown-menu a:hover{
  background:var(--red-light);
  color:var(--red);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu{
  display:block;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions{
  display:flex;
  gap:9px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;

  border-radius:11px;

  padding:12px 17px;

  font-weight:800;
  font-size:12px;

  border:1px solid transparent;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;

  cursor:pointer;
}

.btn:hover{
  transform:translateY(-2px);
}


/* Primary Red */

.btn-primary{
  background:#d71d28;
  color:#fff;
  border-color:#d71d28;
  box-shadow:0 10px 22px rgba(215,29,40,.28);
}

.btn-primary:hover{
  background:#b91520;
  border-color:#b91520;
  color:#fff;
  box-shadow:0 14px 30px rgba(215,29,40,.35);
}


/* Login Red */

.btn-login{
  background:#d71d28;
  border-color:#d71d28;
  color:#fff;
  box-shadow:0 8px 18px rgba(215,29,40,.20);
}

.btn-login:hover{
  background:#b91520;
  border-color:#b91520;
  color:#fff;
}


/* White Button */

.btn-light{
  background:#fff;
  color:var(--red);
  border:1px solid #fff;
}

.btn-light:hover{
  background:#fff0f1;
  color:var(--red-dark);
}


/* Transparent Button */

.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.60);
  color:#fff;
}

.btn-ghost:hover{
  background:#d71d28;
  border-color:#d71d28;
  color:#fff;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle{
  display:none;
  border:0;
  background:#d71d28;
  color:#fff;
  border-radius:10px;
  padding:9px 12px;
  font-size:18px;
  cursor:pointer;
  transition:.2s;
}

.menu-toggle:hover{
  background:#b91520;
}


/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      115deg,
      #061a34 0%,
      #0b2b52 55%,
      #0d4161 100%
    );

  color:#fff;
}

.hero:after{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border-radius:50%;

  right:-180px;
  top:-220px;

  background:
    radial-gradient(
      circle,
      rgba(215,29,40,.30),
      transparent 68%
    );
}

.hero-grid{
  min-height:590px;

  display:grid;

  grid-template-columns:1.02fr .98fr;

  align-items:center;

  gap:55px;

  position:relative;

  z-index:1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;

  color:var(--red);

  font-weight:900;

  font-size:10px;

  letter-spacing:1.8px;

  text-transform:uppercase;
}

.hero .eyebrow{
  color:#ff858c;
}

.hero h1,
.page-head h1{
  font-family:Manrope,Arial,sans-serif;

  font-size:clamp(36px,5vw,62px);

  line-height:1.06;

  letter-spacing:-2px;

  margin:15px 0;
}

.hero p{
  color:#c8d7e8;

  max-width:610px;

  font-size:16px;
}

.hero-buttons{
  display:flex;

  flex-wrap:wrap;

  gap:11px;

  margin-top:27px;
}

.hero-proof{
  display:flex;

  gap:24px;

  margin-top:30px;

  color:#d4e0ef;

  font-size:11px;
}

.hero-proof strong{
  display:block;

  color:#fff;

  font-size:17px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual{
  position:relative;
}

.hero-photo{
  width:100%;

  height:430px;

  object-fit:cover;

  border-radius:28px;

  border:8px solid rgba(255,255,255,.08);

  box-shadow:
    0 35px 70px rgba(0,0,0,.22);
}

.floating-card{
  position:absolute;

  left:-35px;
  bottom:25px;

  background:#fff;

  color:var(--ink);

  border-radius:17px;

  padding:18px 20px;

  box-shadow:var(--shadow);

  min-width:210px;
}

.floating-card small{
  color:var(--muted);
  font-size:10px;
}

.floating-card strong{
  display:block;

  font-size:21px;

  margin:2px 0 4px;
}

.mini-positive{
  color:var(--green);

  font-size:10px;

  font-weight:800;
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar{
  border-bottom:1px solid var(--line);
  background:#fff;
}

.trust-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  padding:19px 0;

  gap:15px;
}

.trust-item{
  display:flex;

  align-items:center;

  justify-content:center;

  gap:10px;

  font-size:11px;

  font-weight:800;

  color:#536176;
}

.trust-icon{
  width:34px;
  height:34px;

  display:grid;

  place-items:center;

  border-radius:50%;

  background:var(--red-light);

  color:var(--red);

  font-weight:900;
}


/* =========================================================
   SECTIONS
========================================================= */

.section{
  padding:85px 0;
}

.section.alt{
  background:var(--bg);
}

.section-head{
  max-width:720px;

  margin:0 auto 42px;

  text-align:center;
}

.section-head h2,
.split h2{
  font-family:Manrope,Arial,sans-serif;

  font-size:34px;

  line-height:1.15;

  letter-spacing:-1px;

  margin:10px 0;
}

.section-head p,
.split p{
  color:var(--muted);

  font-size:14px;
}


/* =========================================================
   CARDS
========================================================= */

.cards{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:18px;
}

.card{
  background:#fff;

  border:1px solid var(--line);

  border-radius:var(--radius);

  padding:27px;

  box-shadow:
    0 8px 30px rgba(8,28,55,.04);

  transition:.2s;
}

.card:hover{
  transform:translateY(-4px);

  box-shadow:var(--shadow);

  border-color:#f2c4c7;
}

.icon{
  width:46px;
  height:46px;

  border-radius:14px;

  display:grid;

  place-items:center;

  background:
    linear-gradient(
      135deg,
      #fff0f1,
      #fff7f7
    );

  color:var(--red);

  font-weight:900;

  margin-bottom:17px;
}

.card h3{
  font-family:Manrope,Arial,sans-serif;

  font-size:17px;

  margin:0 0 8px;
}

.card p{
  color:var(--muted);

  font-size:12px;

  margin:0;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-card{
  position:relative;

  overflow:hidden;
}

.product-card .tag{
  position:absolute;

  right:18px;
  top:18px;

  background:var(--red-light);

  color:var(--red-dark);

  padding:5px 9px;

  border-radius:999px;

  font-size:9px;

  font-weight:900;
}

.product-card .product-link{
  display:inline-flex;

  margin-top:18px;

  color:var(--red);

  font-size:11px;

  font-weight:900;

  transition:.2s;
}

.product-card .product-link:hover{
  color:var(--red-dark);
}


/* =========================================================
   SPLIT CONTENT
========================================================= */

.split{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:65px;

  align-items:center;
}

.photo{
  width:100%;

  height:450px;

  object-fit:cover;

  border-radius:26px;

  box-shadow:var(--shadow);
}

.checks{
  list-style:none;

  padding:0;

  margin:22px 0;
}

.checks li{
  margin:10px 0;

  color:#43536a;

  font-size:12px;
}

.checks li:before{
  content:"✓";

  display:inline-grid;

  place-items:center;

  width:22px;
  height:22px;

  border-radius:50%;

  background:#e7f8f4;

  color:var(--green);

  font-weight:900;

  margin-right:9px;
}


/* =========================================================
   STATISTICS
========================================================= */

.stats{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:1px;

  background:var(--line);

  border:1px solid var(--line);

  border-radius:20px;

  overflow:hidden;
}

.stat{
  background:#fff;

  text-align:center;

  padding:27px;
}

.stat strong{
  display:block;

  font-family:Manrope,Arial,sans-serif;

  font-size:29px;

  color:var(--navy);
}

.stat span{
  font-size:10px;

  color:var(--muted);

  font-weight:800;
}


/* =========================================================
   RATES
========================================================= */

.rate-strip{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:15px;
}

.rate-box{
  padding:22px;

  border-radius:18px;

  background:#fff;

  border:1px solid var(--line);

  transition:.2s;
}

.rate-box:hover{
  border-color:#f0b8bc;

  box-shadow:0 12px 35px rgba(8,28,55,.07);
}

.rate-box small{
  color:var(--muted);

  font-size:10px;
}

.rate-box strong{
  display:block;

  font-family:Manrope,Arial,sans-serif;

  font-size:27px;

  color:var(--red);

  margin:2px 0;
}


/* =========================================================
   FEATURE BANNER
========================================================= */

.feature-banner{
  border-radius:28px;

  overflow:hidden;

  background:
    linear-gradient(
      120deg,
      #071b36,
      #0e4561
    );

  color:#fff;

  padding:45px;
}

.feature-banner-grid{
  display:grid;

  grid-template-columns:1fr auto;

  align-items:center;

  gap:30px;
}

.feature-banner h2{
  font-family:Manrope,Arial,sans-serif;

  font-size:30px;

  margin:5px 0 8px;
}

.feature-banner p{
  color:#c7d9ea;

  margin:0;

  max-width:680px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:18px;
}

.quote{
  padding:25px;

  border:1px solid var(--line);

  border-radius:18px;

  background:#fff;

  transition:.2s;
}

.quote:hover{
  border-color:#f0b8bc;

  box-shadow:0 12px 35px rgba(8,28,55,.06);
}

.quote p{
  font-size:13px;

  color:#4e5d70;
}

.quote strong{
  font-size:11px;
}

.stars{
  color:var(--gold);

  letter-spacing:2px;
}


/* =========================================================
   NEWS
========================================================= */

.news-grid{
  display:grid;

  grid-template-columns:1.35fr .65fr;

  gap:18px;
}

.news-main,
.news-small{
  border-radius:22px;

  overflow:hidden;

  border:1px solid var(--line);

  background:#fff;
}

.news-main img{
  width:100%;

  height:270px;

  object-fit:cover;
}

.news-content{
  padding:22px;
}

.news-content h3{
  font-family:Manrope,Arial,sans-serif;

  font-size:21px;

  margin:7px 0;
}

.news-content p{
  color:var(--muted);

  font-size:12px;
}

.news-small{
  padding:22px;
}

.news-small h4{
  font-family:Manrope,Arial,sans-serif;

  margin:8px 0;
}

.news-small p{
  font-size:11px;

  color:var(--muted);
}


/* =========================================================
   CTA
========================================================= */

.cta{
  background:
    linear-gradient(
      135deg,
      #0a2d52,
      #a9141e
    );

  border-radius:28px;

  padding:55px;

  text-align:center;

  color:#fff;
}

.cta h2{
  font-family:Manrope,Arial,sans-serif;

  font-size:37px;

  margin:7px 0;
}

.cta p{
  max-width:650px;

  margin:0 auto;

  color:#f3dfe1;
}

.cta-actions{
  display:flex;

  justify-content:center;

  gap:10px;

  margin-top:25px;

  flex-wrap:wrap;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.page-head{
  background:
    linear-gradient(
      135deg,
      #fff1f2,
      #f4fbfa
    );

  padding:75px 0;

  border-bottom:1px solid var(--line);
}

.page-head h1{
  font-size:46px;

  color:var(--navy);

  max-width:900px;
}

.page-head p{
  max-width:760px;

  color:var(--muted);
}


/* =========================================================
   TABLE
========================================================= */

.rate-table{
  width:100%;

  border-collapse:collapse;

  background:#fff;

  border:1px solid var(--line);

  border-radius:18px;

  overflow:hidden;
}

.rate-table th,
.rate-table td{
  text-align:left;

  padding:15px;

  border-bottom:1px solid var(--line);

  font-size:11px;
}

.rate-table th{
  background:#fff1f2;

  color:var(--navy);
}

.rate-table tr:last-child td{
  border-bottom:0;
}

.rate-table tr:hover td{
  background:#fffafa;
}


/* =========================================================
   FORMS
========================================================= */

.form-card{
  max-width:820px;

  margin:auto;

  background:#fff;

  border:1px solid var(--line);

  border-radius:22px;

  padding:30px;

  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:16px;
}

.field{
  display:flex;

  flex-direction:column;

  gap:6px;
}

.field.full{
  grid-column:1/-1;
}

.field label{
  font-size:11px;

  font-weight:900;

  color:var(--ink);
}

.field input,
.field textarea,
.field select{
  font:inherit;

  border:1px solid #d7e0eb;

  border-radius:10px;

  padding:12px 13px;

  outline:none;

  background:#fff;

  transition:.2s;
}

.field input:hover,
.field textarea:hover,
.field select:hover{
  border-color:#c4cedb;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:var(--red);

  box-shadow:
    0 0 0 3px rgba(215,29,40,.10);
}

.field textarea{
  min-height:150px;

  resize:vertical;
}


/* =========================================================
   NOTICES
========================================================= */

.notice{
  padding:14px;

  border-radius:12px;

  background:#eaf8f4;

  color:#08775e;

  font-size:12px;

  margin-bottom:18px;
}

.error{
  padding:14px;

  border-radius:12px;

  background:#fff0f0;

  color:#a52b2b;

  font-size:12px;

  margin-bottom:18px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
  background:#06172d;

  color:#c5d2e0;

  border-top:5px solid #d71d28;
}

.footer-top{
  padding:65px 0 45px;

  display:grid;

  grid-template-columns:2fr 1fr 1fr 1.2fr;

  gap:45px;
}

.footer-brand{
  margin-bottom:15px;
}

.footer-brand .brand-logo{
  filter:brightness(0) invert(1);

  opacity:.95;
}

.footer-lead{
  max-width:360px;

  font-size:12px;

  color:#98aabd;
}

.footer h4{
  color:#fff;

  font-family:Manrope,Arial,sans-serif;

  font-size:13px;

  margin:0 0 15px;

  position:relative;

  padding-bottom:9px;
}

.footer h4:after{
  content:"";

  position:absolute;

  left:0;

  bottom:0;

  width:32px;

  height:3px;

  border-radius:3px;

  background:#d71d28;
}

.footer-top>div>a,
.footer-top>div>p{
  display:block;

  font-size:11px;

  margin:8px 0;

  color:#9fb0c3;

  transition:.2s;
}

.footer-top>div>a:hover{
  color:#ff737b;

  padding-left:4px;
}

.trust-mini{
  display:flex;

  gap:8px;

  flex-wrap:wrap;
}

.trust-mini span{
  font-size:9px;

  border:1px solid #2a405a;

  padding:5px 8px;

  border-radius:999px;

  transition:.2s;
}

.trust-mini span:hover{
  border-color:#d71d28;

  color:#fff;

  background:rgba(215,29,40,.12);
}


/* =========================================================
   FOOTER SOCIAL / BRAND LINKS
========================================================= */

.footer-social{
  display:flex;

  gap:8px;

  margin-top:15px;
}

.footer-social a{
  width:34px;

  height:34px;

  display:grid;

  place-items:center;

  border-radius:50%;

  border:1px solid #2a405a;

  color:#c5d2e0;

  transition:.2s;
}

.footer-social a:hover{
  background:#d71d28;

  border-color:#d71d28;

  color:#fff;

  transform:translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
  border-top:1px solid #1c3048;
}

.footer-bottom-inner{
  min-height:55px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  font-size:10px;

  color:#7f93a9;
}

.footer-bottom a{
  color:#d71d28;

  transition:.2s;
}

.footer-bottom a:hover{
  color:#ff737b;
}


/* =========================================================
   UTILITY CLASSES
========================================================= */

.text-red{
  color:#d71d28 !important;
}

.bg-red{
  background:#d71d28 !important;

  color:#fff !important;
}

.border-red{
  border-color:#d71d28 !important;
}

.text-teal{
  color:var(--teal) !important;
}

.text-green{
  color:var(--green) !important;
}

.text-gold{
  color:var(--gold) !important;
}


/* =========================================================
   RESPONSIVE - 1000px
========================================================= */

@media(max-width:1000px){

  .main-nav{
    gap:0;
  }

  .main-nav>a,
  .nav-dropdown>button{
    padding:9px 7px;

    font-size:11px;
  }

  .nav-actions .btn{
    padding:10px 11px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    max-width:650px;
  }

  .hero{
    padding-bottom:45px;
  }

  .cards,
  .testimonials{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-top{
    grid-template-columns:1.5fr 1fr 1fr;
  }
}


/* =========================================================
   RESPONSIVE - 800px
========================================================= */

@media(max-width:800px){

  .announcement-inner{
    justify-content:center;
  }

  .announcement-links{
    display:none;
  }

  .nav-wrap{
    min-height:68px;

    flex-wrap:wrap;
  }

  .menu-toggle{
    display:block;

    margin-left:auto;
  }

  .main-nav{
    display:none;

    order:4;

    width:100%;

    flex-direction:column;

    align-items:stretch;

    padding-bottom:12px;
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav>a,
  .nav-dropdown>button{
    text-align:left;

    width:100%;

    padding:12px;
  }

  .main-nav>a:hover,
  .main-nav>a.active,
  .nav-dropdown>button:hover{
    background:#fff0f1;

    color:#d71d28;
  }


  /* Mobile dropdown */

  .dropdown-menu{
    position:static;

    width:100%;

    box-shadow:none;

    border:0;

    background:#fff5f6;

    border-radius:10px;
  }

  .dropdown-menu a{
    padding:11px 15px;
  }

  .dropdown-menu a:hover{
    background:#ffe5e7;

    color:#d71d28;
  }


  /* Mobile actions */

  .nav-actions{
    display:none;

    order:5;

    width:100%;

    padding-bottom:15px;
  }

  .nav-actions.open{
    display:flex;
  }

  .nav-actions .btn{
    flex:1;
  }


  .brand-logo{
    width:140px;
  }


  /* Trust */

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }


  /* Content */

  .split{
    grid-template-columns:1fr;

    gap:30px;
  }

  .split .photo{
    height:340px;
  }


  /* Stats */

  .stats{
    grid-template-columns:repeat(2,1fr);
  }


  /* Rates */

  .rate-strip{
    grid-template-columns:1fr;
  }


  /* News */

  .news-grid{
    grid-template-columns:1fr;
  }


  /* Feature */

  .feature-banner-grid{
    grid-template-columns:1fr;
  }


  /* Footer */

  .footer-top{
    grid-template-columns:1fr 1fr;
  }


  .hero h1{
    font-size:42px;
  }
}


/* =========================================================
   RESPONSIVE - 520px
========================================================= */

@media(max-width:520px){

  .container{
    width:min(100% - 26px,1180px);
  }


  .announcement{
    font-size:10px;
  }

  .announcement-inner{
    min-height:35px;
  }


  .section{
    padding:60px 0;
  }


  /* Hero */

  .hero-grid{
    min-height:auto;

    padding:65px 0 25px;
  }

  .hero h1{
    font-size:36px;

    letter-spacing:-1.2px;
  }

  .hero p{
    font-size:14px;
  }

  .hero-photo{
    height:300px;
  }

  .floating-card{
    left:12px;

    bottom:12px;
  }


  /* Cards */

  .cards,
  .testimonials,
  .form-grid{
    grid-template-columns:1fr;
  }


  /* Trust */

  .trust-grid,
  .stats{
    grid-template-columns:1fr 1fr;
  }


  /* Footer */

  .footer-top{
    grid-template-columns:1fr;

    gap:30px;
  }


  .footer-bottom-inner{
    flex-direction:column;

    justify-content:center;

    gap:3px;

    padding:12px 0;

    text-align:center;
  }


  /* Page heading */

  .page-head{
    padding:55px 0;
  }

  .page-head h1{
    font-size:35px;

    letter-spacing:-1px;
  }


  /* CTA */

  .cta,
  .feature-banner{
    padding:35px 22px;
  }

  .cta h2{
    font-size:30px;
  }


  /* Buttons */

  .hero-buttons{
    flex-direction:column;

    align-items:stretch;
  }

  .hero-buttons .btn{
    width:100%;
  }

}


/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid rgba(215,29,40,.28);

  outline-offset:2px;
}


/* =========================================================
   SELECTION
========================================================= */

::selection{
  background:#d71d28;

  color:#fff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
  width:9px;
}

::-webkit-scrollbar-track{
  background:#f1f4f8;
}

::-webkit-scrollbar-thumb{
  background:#d71d28;

  border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
  background:#a9141e;
}
