@font-face {
  font-family: "Samsung Sharp Sans";
  src: url("assets/fonts/samsungsharpsans.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Samsung Sharp Sans";
  src: url("assets/fonts/samsungsharpsans-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Samsung Sharp Sans";
  src: url("assets/fonts/samsungsharpsans-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* ====================================
   RESET
==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width:100%;
}

html,
body{
  overflow-x:hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

p, span {
    font-family: 'Neue Montreal';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Samsung Sharp Sans";
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ====================================
   TOAST
==================================== */

.toast{

  position:fixed;

  top:30px;
  right:30px;

  width:320px;

  background:#102A4A;

  border-left:4px solid #F9D266;

  border-radius:12px;

  padding:18px;

  display:flex;

  align-items:center;

  gap:12px;

  color:#fff;

  box-shadow:
  0 20px 50px rgba(0,0,0,.25);

  transform:translateX(400px);

  opacity:0;

  transition:.35s ease;

  z-index:99999;
}

.toast.show{

  transform:translateX(0);

  opacity:1;
}

.toast-icon{

  width:36px;
  height:36px;

  border-radius:50%;

  background:#F9D266;

  color:#102A4A;

  display:flex;

  align-items:center;
  justify-content:center;

  font-weight:700;
}

.toast-content{

  display:flex;

  flex-direction:column;
}

.toast-content strong{

  font-family:'Samsung Sharp Sans';
}

.toast-content span{

  font-size:13px;

  opacity:.8;
}

/* ====================================
   VARIABLES
==================================== */

:root {
  --primary: #0f2949;
  --secondary: #102f54;

  --gold: #f8d265;
  --gold-dark: #d8ae44;

  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);

  --section-padding: 120px;

  --container: 1440px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* ====================================
   CONTAINER
==================================== */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ====================================
   BUTTONS
==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Neue Montreal";
  min-height: 45px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-hero-outline {
  display: flex;
  align-items: center;
  flex-basis: 30%;
}

img.btn-icon-outline {
  margin-left: -45px;
}

.btn-row {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  padding: 10px 70px;
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 40px rgba(248, 210, 101, 0.35);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: #fff;
  min-height: 45px;
  padding-right: 55px;
  padding: 10px 75px;
}

.btn-outline:hover {
  background: var(--gold);

  color: var(--primary);
}

.full-width {
  width: 100%;
}

/* ====================================
   SECTION COMMON
==================================== */

section {
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: "Neue Montreal";
}

.section-heading.center {
  text-align: center;

  margin-inline: auto;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 72px);

  line-height: 1.1;

  font-weight: 700;

  margin-bottom: 20px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 18px;
}

/* ====================================
   HEADER
==================================== */

.site-header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
}


/* ====================================
   LOGO
==================================== */

.logo {
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 55px;
}

/* ====================================
   DESKTOP NAV
==================================== */

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Neue Montreal";
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.desktop-nav a:hover {
  color: #F9D266;
}

/* ====================================
   HEADER CTA
==================================== */

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #F9D266;
  color: #102A4A;
  font-family: "Neue Montreal";
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.header-arrow {
  width: 42px;
  height: 42px;
  display: block;
  margin-left: -4px;
}

/* ====================================
   MOBILE TOGGLE
==================================== */

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.mobile-toggle span {
  
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: .3s;
}

/* ====================================
   MOBILE MENU
==================================== */

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:300px;
  height:100vh;
  background:#102A4A;
  z-index:1000;
}


.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner{
  position:relative;
  padding:100px 30px 40px;
}

.menu-close{

  position:absolute;

  top:25px;
  right:20px;

  width:40px;
  height:40px;

  border:none;

  background:none;

  color:#fff;

  font-size:34px;

  line-height:1;

  cursor:pointer;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 22px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Neue Montreal";
  font-size: 16px;
  font-weight: 500;
}

.mobile-btn {
  margin-top: 35px;
  height: 50px;
  background: #F9D266;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102A4A !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* ====================================
   TABLET
==================================== */

@media (max-width:1199px) {

  .desktop-nav ul {
    gap: 25px;
  }

  .header-btn {
    padding: 0 18px;
    font-size: 12px;
  }

  .header-arrow {
    width: 38px;
    height: 38px;
  }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:991px) {

  .site-header {
    top: 15px;
  }

  .header-wrapper {

    min-height: 72px;

    padding: 10px 16px;
  }

  .logo img {
    height: 42px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ====================================
   SMALL MOBILE
==================================== */

@media (max-width:480px) {

  .logo img {
    height: 36px;
  }

  .mobile-menu {
    width: 280px;
  }
}

/* ====================================
   HERO
==================================== */

.hero-section {
  min-height: 100vh;
  background-image: url(assets/hero-bg-image.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  align-items: center;

  padding-top: 180px;
  padding-bottom: 140px;
}

.hero-content {
  text-align: center;

  max-width: 1200px;

  margin-inline: auto;
}

.hero-tag {
  display: inline-block;

  color: var(--gold);

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 30px;
  font-family: 'Neue Montreal';
}

.hero-title {
  font-size: clamp(55px, 7vw, 105px);
  font-family: "Samsung Sharp Sans";
  line-height: 1.05;

  font-weight: 700;

  margin-bottom: 30px;
}

.hero-title span {
  display: block;

  color: var(--gold);
}

.hero-description {
  max-width: 850px;

  margin-inline: auto;

  color: var(--text-light);

  font-size: 20px;

  margin-bottom: 50px;
}

.hero-actions {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.btn-hero-flex {
  display: flex;
  align-items: center;
}

/* ====================================
   STATS
==================================== */

.container-stats {
  width: 1140px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: -50px;
}

.stat-card {
  background: #14365d;
  border: 1px solid #d3aa42;
  border-radius: 24px;
  padding: 10px 20px;
  text-align: center;
}

.stat-card:hover {
  background: #f9d266;
  border: 1px solid #f9d266;
  box-shadow: 0px 0px 20px 0px #d3aa42;
  transition: all 0.6s ease-in-out;
}

.stat-card.featured {
  background: var(--gold);
  color: var(--primary);
}

.stat-card h3 {
  font-size: 48px;
  font-family: "Samsung Sharp Sans";
  margin-bottom: 10px;
  font-weight: 700;
  color: #f9d266;
  margin: 0;
}

.stat-card p {
  font-size: 14px;
  font-family: "Neue Montreal";
  line-height: 19.2px;
  font-weight: 500;
  text-transform: uppercase;
}

.stat-card:hover h3,
.stat-card:hover p {
  color: #102a4a;
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .hero-section {
    padding-top: 160px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-description {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    padding: 0px 20px;
  }
  
  .container-stats {
  width: 100%;
  margin: 0 auto;
}
}

/* ====================================
   WELCOME SECTION
==================================== */

.welcome-section {
  padding: 90px 0;
}

.container-welcome {
  width: 1240px;
  margin: 0 auto;
}

.welcome-section .section-tag {
  color: #102a4a;
  font-size: 18px;
  font-weight: 700;
  font-family: "Neue Montreal";
}

.welcome-title {
  font-size: 55px;
  line-height: 1.05;
  color: #102a4a;
  margin: 15px 0 35px;
  font-weight: 700;
  font-family: "Samsung Sharp Sans";
}

.welcome-title span {
  color: #d9ae46;
}

.welcome-layout {
  display: grid;
  grid-template-columns: 630px 1fr;
  gap: 40px;
  align-items: start;
}

.row-tag-title {
  padding-left: 200px;
}

/* LEFT BLOCK */

.welcome-feature {
  position: relative;
  box-shadow: 0px 32px 80px 0 #f9d26680;
}

.welcome-card {
  background: #102a4a;
  min-height: 190px;
  border-radius: 20px;
  padding: 40px 30px 30px 270px;
  color: #fff;
}

.welcome-card p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  font-family: "Neue Montreal";
  font-weight: 500;
}

.welcome-doctor {
  position: absolute;
  left: 0px;
  top: -76px;
  width: 250px;
  z-index: 2;
}

.welcome-doctor img {
  width: 100%;
  display: block;
}

.quote-author strong {
  display: block;
  color: #d9ae46;
  font-size: 16px;
  margin-bottom: 5px;
  font-family: "Neue Montreal";
  font-style: italic;
  font-weight: 600;
}

.quote-author span {
  color: #d9ae46;

  font-size: 12px;
}

/* RIGHT TEXT */

.welcome-text p {
  color: #233f5e;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 22px;
  font-family: "Neue Montreal";
  font-weight: 500;
}

/* TABLET */

@media (max-width: 1100px) {
  .welcome-layout {
    grid-template-columns: 1fr;
  }

  .welcome-feature {
    margin-top: 50px;
  }

  .welcome-title {
    font-size: 48px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
    
    .container-welcome {
    padding: 0px 20px;
}

.row-tag-title {
    padding-left: 0px;
}

  .welcome-title {
    font-size: 34px;
  }

  .welcome-doctor {
    position: relative;
    top: 21px;
    width: 150px;
    margin: auto;
  }

  .welcome-card {
    padding: 25px;

    margin-top: 20px;
  }
}

/* ====================================
   DIFFERENCE SECTION
==================================== */

.difference-section {
  color: #102a4a;
  padding-bottom: var(--section-padding);
}

.container-difference {
  width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.difference-section .section-tag {
  color: #0d1f35;
}

.section-heading span {
  color: #f9d266;
}

.difference-section .section-heading {
  max-width: 900px;
  font-family: "Samsung Sharp Sans";
}

.difference-section h2 {
  color: #102a4a;
}

.difference-section .section-heading p {
  color: #3f5d7a;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ====================================
   DIFFERENCE CARD
==================================== */

.difference-card {
  background: #fffcf5;

  border: 1px solid #f9d266;

  border-radius: 28px;

  padding: 40px;

  transition: 0.35s ease;

  height: 100%;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #102a4a;
}

.difference-card:hover .card-icon {
  background: #f9d266;
}

.difference-card:hover h3,
.difference-card:hover p {
  color: #fff;
}

.card-icon {
  width: 60px;
  height: 60px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #102a4a;

  margin-bottom: 30px;
}

.card-icon img {
  width: 25px;
  height: 25px;
}

.difference-card.featured .card-icon {
  background: var(--gold);
}

.difference-card:hover .card-icon svg path {
  fill: #102a4a;
}

.difference-card h3 {
  font-size: 20px;

  line-height: 1.2;

  margin-bottom: 20px;
}

.difference-card p {
  font-size: 16px;

  line-height: 1.9;
}

.difference-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 1200px) {
  .welcome-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {
  .welcome-content h2 {
    font-size: 40px;
  }

  .quote-card {
    padding: 30px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-card {
    padding: 30px;
  }

  .difference-card h3 {
    font-size: 24px;
  }
}

/* ====================================
   RISK FREE PROOF
==================================== */

.proof-section {
  position: relative;

  background: #0f2949;

  padding: 140px 0;
  overflow: hidden;
}

.proof-section {
  position: relative;
  background: #0f2949;
  padding: 120px 0;
  overflow: hidden;
}

.proof-section {
  position: relative;
  background: #0f2949;
  padding: 140px 0;
  overflow: hidden;
}

.proof-section .container {
  position: relative;
  z-index: 2;
}

.proof-section .container {
  position: relative;

  z-index: 2;

  max-width: 1000px;
}

/* Heading */

.proof-section .section-heading {
  text-align: center;

  margin: 0 auto 50px;
}

.proof-section .section-tag {
  color: #f8d265;

  font-size: 13px;

  font-weight: 700;
}

.proof-section h2 {
  color: #fff;

  font-size: 58px;

  line-height: 1.1;

  margin-bottom: 15px;
}

.proof-section h2 span {
  color: #f8d265;
}

.proof-section .section-heading p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  max-width: 700px;

  margin: auto;
}

/* Cards */

.proof-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 40px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(248, 210, 101, 0.6);

  border-radius: 16px;

  padding: 28px;

  min-height: 130px;
}

.proof-card h3 {
  color: #f8d265;

  font-size: 20px;

  margin-bottom: 15px;
}

.proof-card p {
  color: rgba(255, 255, 255, 0.8);

  font-size: 13px;

  line-height: 1.7;
}

/* CTA */

.proof-cta {
  text-align: center;
  margin-top: 35px;
  display: flex;
  justify-content: center;
}


/* Tablet */

@media (max-width: 992px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-section h2 {
    font-size: 42px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .proof-section {
    padding: 100px 20px;
  }

  .proof-section h2 {
    font-size: 34px;
  }
}

/* ====================================
   STORY SECTION
==================================== */

.story-section {
  padding: 110px 0;
  background: #fffcf5;
}

/* Typography */

.story-title,
.story-info-card h4,
.triad-number,
.triad-title,
.triad-intro h3 {
  font-family: "Samsung Sharp Sans", sans-serif;
}

.story-section p,
.story-section li,
.triad-desc {
  font-family: "Neue Montreal", sans-serif;
}

/* Layout */

.story-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

/* Left Side */

.story-title {
  font-size: 64px;
  line-height: 0.98;
  font-weight: 700;
  color: #102a4a;
  letter-spacing: -1px;
  margin: 10px 0 30px;
}

.story-title span {
  color: #f9d266;
}

.story-left p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
  color: #233f5e;
}

.triad-intro {
  margin-top: 35px;
}

.triad-intro h3 {
  font-size: 28px;
  color: #102a4a;
  margin-bottom: 10px;
}

.triad-intro p {
  font-size: 15px;
  color: #233f5e;
}

/* Right Side */

.story-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-info-card {
  background: #fffcf5;

  border: 1px solid #f9d266;

  border-radius: 25px;

  padding: 32px 30px;

  box-shadow: 0 32px 80px rgba(249, 210, 102, 0.2);
}

.story-info-card h4 {
  font-size: 22px;

  font-weight: 700;

  color: #102a4a;

  margin-bottom: 22px;
}

.story-info-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-info-card li {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 15px 0;

  border-bottom: 1px solid #9ca8b8;

  font-size: 16px;

  font-weight: 500;

  color: #102a4a;

  line-height: 1.45;
}

.story-info-card li:last-child {
  border-bottom: none;
}

.story-info-card li span:last-child {
  flex: 1;
}

/* Icon */

.story-icon {
  width: 18px;
  height: 18px;

  min-width: 18px;

  border-radius: 50%;

  background: #102a4a;

  color: #f9d266;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 13px;

  font-weight: 700;

  line-height: 1;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1100px) {
  .story-top {
    grid-template-columns: 1fr;
  }

  .story-title {
    font-size: 48px;
  }

  .triad-header,
  .triad-row {
    grid-template-columns: 120px 220px 1fr;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 80px 0;
  }

  .story-title {
    font-size: 38px;
  }

  .story-info-card {
    padding: 24px;
  }

  .story-info-card li {
    font-size: 14px;
  }

  .triad-header,
  .triad-row {
    grid-template-columns: 150px 1fr !important;
    gap: 12px;
  }
  
  .triad-left, .triad-right {
    padding: 25px 14px !important;
    flex-direction: column;
}
  
  .triad-number {
    font-size: 80px !important;
    min-width: 115px !important;
}

   .btn-hero-flex-story a.btn.btn-primary {
    font-size: 11px !important;
}

  .triad-title {
    font-size: 16px;
  }

  .triad-desc {
    font-size: 13px;
  }
}

/* ====================================
   CREDENTIAL CARD
==================================== */

.credentials-card {
  background: #ffffff;

  border: 1px solid rgba(248, 210, 101, 0.5);

  border-radius: 30px;

  padding: 40px;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.credentials-card h3 {
  color: #102a4a;

  font-size: 28px;

  margin-bottom: 30px;
}

.credentials-card ul {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.credentials-card li {
  position: relative;

  padding-left: 30px;

  color: #35516f;

  line-height: 1.7;
}

.credentials-card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 10px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--gold);
}

/* ====================================
   TRIAD TABLE
==================================== */

.triad-table {
  margin-top: 40px;

  border-radius: 18px;

  overflow: hidden;
}

.triad-header {
  display: grid;

  grid-template-columns: 520px 1fr;

  background: #f9d266;

  color: #102a4a;

  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 15px;

  font-weight: 700;

  padding: 18px 30px;
}

.triad-row {
  display: grid;

  grid-template-columns: 520px 1fr;

  background: #102a4a;

  min-height: 110px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.triad-left {
  display: flex;

  align-items: center;

  gap: 25px;

  padding: 25px 30px;
}

.triad-number {
  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 120px;

  font-weight: 700;

  line-height: 1;

  color: #f9d266;

  min-width: 140px;
}

.btn-hero-flex-story {
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.triad-title {
  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 18px;

  font-weight: 700;

  color: #fff;
}

.triad-right {
  display: flex;

  align-items: center;

  padding: 25px 30px;

  border-left: 1px solid rgba(255, 255, 255, 0.12);

  font-family: "Neue Montreal", sans-serif;

  font-size: 13px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .triad-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {
  .proof-card {
    padding: 30px;
  }

  .credentials-card {
    padding: 30px;
  }

  .impact-card {
    padding: 30px;
  }

  .impact-item {
    min-height: auto;
  }

  .triad-grid {
    grid-template-columns: 1fr;
  }

  .triad-card {
    padding: 30px;
  }

  .triad-card h3 {
    font-size: 24px;
  }
}

/* ====================================
   SERVICES SECTION
==================================== */

.services-section {
  padding: 110px 0;

  background: #102a4a;
}

/* Heading */



.services-section .section-tag {
  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 12px;

  font-weight: 700;

  color: #f9d266;

  text-transform: uppercase;

  display: block;

  margin-bottom: 12px;
}

.services-section .section-heading h2 {
  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 58px;

  line-height: 1.05;

  color: #fff;

  margin-bottom: 18px;
}

.services-section .section-heading h2 .gold {
  color: #f9d266;
}

.services-section .section-heading p {
  font-family: "Neue Montreal", sans-serif;

  font-size: 14px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.75);

  max-width: 700px;

  margin: auto;
}

/* Grid */

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

/* Cards */

.service-card {
  background: #fffcf5;

  border: 1px solid #f9d266;

  border-radius: 18px;

  padding: 32px;

  min-height: 250px;

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

/* Hover State */

.service-card:hover {
  background: #f9d266;

  transform: translateY(-6px);

  box-shadow: 0 25px 80px rgba(249, 210, 102, 0.3);
}

.service-card:hover .service-number,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover li {
  color: #102a4a;
}

/* Number */

.service-number {
  display: block;

  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 120px;

  line-height: 1;

  font-weight: 700;

  color: #f9d266;

  margin-bottom: 18px;
}

/* Title */

.service-card h3 {
  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 22px;

  line-height: 1.2;

  color: #102a4a;

  margin-bottom: 16px;
}

/* Description */

.service-card p {
  font-family: "Neue Montreal", sans-serif;

  font-size: 14px;

  line-height: 1.8;

  color: #233f5e;

  margin-bottom: 20px;
}

/* List */

.service-card ul {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: auto;
}

.service-card li {
  position: relative;

  padding-left: 30px;

  font-family: "Neue Montreal", sans-serif;

  font-size: 14px;

  line-height: 1.7;
  color: #0d1f35;
}

.service-card li::before {
  content: "+";

  position: absolute;

  left: 0;
  top: 2px;

  width: 22px;
  height: 22px;

  border: 1.5px solid #102a4a;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #f9d266;

  font-size: 20px;

  font-weight: 700;

  background: #fff;

  box-sizing: border-box;
}

.service-features {
  display: flex;

  flex-direction: column;

  gap: 16px;

  margin-top: 20px;
}

.service-features li {
  position: relative;

  padding-left: 28px;

  list-style: none;
}

.service-features li strong {
  display: block;

  font-family: "Samsung Sharp Sans", sans-serif;

  font-size: 14px;

  font-weight: 700;

  color: #102a4a;

  margin-bottom: 4px;
}

.service-features li span {
  display: block;

  font-family: "Neue Montreal", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  color: #233f5e;
}

.service-features li::before {
  content: "+";

  position: absolute;

  left: 0;
  top: 2px;

  width: 18px;
  height: 18px;

  border: 1px solid #102a4a;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #f9d266;

  font-size: 11px;

  font-weight: 700;

  background: #fff;
}

/* Responsive */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section .section-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .service-card {
    min-height: auto;
  }

  .service-number {
    font-size: 56px;
  }

  .services-section .section-heading h2 {
    font-size: 34px;
  }
}

/* ====================================
   SECURITY SECTION
==================================== */

.security-section{
  background:#102A4A;
  padding-bottom: 50px;
}

.security-section .section-tag{

  display:block;

  color:#F9D266;

  font-family:'Samsung Sharp Sans',sans-serif;

  font-size:12px;

  font-weight:700;

  margin-bottom:12px;
}

.security-section h2{

  font-family:'Samsung Sharp Sans',sans-serif;

  font-size:60px;

  color:#fff;

  line-height:1.05;

  margin-bottom:16px;
}

.security-section h2 span{
  color:#F9D266;
}

.security-section .section-heading p{

  color:rgba(255,255,255,.75);

  font-size:14px;

  line-height:1.8;

  max-width:760px;

  margin:auto;
}

/* TOP BADGES */

.security-badges{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:26px;
}

.security-mini-card{

      border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    background: #ffffff10;
    border: 1px solid #F9D266;
}

.security-mini-card h4{

    font-size: 12px;
    color: #F9D266;
    font-family: 'Neue Montreal';
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 25px;
}

.security-mini-card p{

color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Neue Montreal';
    font-weight: 500;
}

.security-badges{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:0;
}

.security-mini-card{

  width:23%;
}

/* connector */

.security-connector{

  width:56px;

  height:7px;

  flex-shrink:0;

  background:url("assets/Vector\ 3575.png") center center no-repeat;

  background-size:contain;
  margin-top: 60px;
}

/* MAIN GRID */

.security-main-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:24px;
}

.security-large-card{

  background: #ffffff10;
    border: 1px solid #F9D266;
    border-radius: 18px;
    padding: 50px 38px;
    min-height: 165px;
    transition: 0.8s ease;
}

.security-large-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 80px rgba(249, 210, 102, 0.3);
}

.security-large-card h3{

font-family: 'Samsung Sharp Sans', sans-serif;
    color: #F9D266;
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 25px;
}

.security-large-card p{

color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 25px;
    font-family: 'Neue Montreal';
    font-weight: 500;
}

/* GLOW CARD */

.security-large-card.featured{

  box-shadow:
  0 0 40px rgba(249,210,102,.18);
}

/* PROMISE */

.security-promise{

  margin-top:40px;

  display:flex;
justify-content: center;
  align-items:center;

  gap:18px;

  color:#fff;

  font-size:14px;
}

.security-lock{
  width:34px;
  height:34px;
  border-radius:8px;
  background:#F9D266;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#102A4A;
  font-size:18px;
}

.security-promise p {
    font-family: 'Neue Montreal';
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

/* MOBILE */

@media(max-width:992px){

  .security-badges{
    grid-template-columns:repeat(2,1fr);
  }

  .security-main-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  .security-badges{
    grid-template-columns:1fr;
    margin-bottom: 45px;
    flex-wrap: wrap;
  }

  .security-section h2{
    font-size:38px;
  }
  
  .security-mini-card {
    width: 100%;
}

.security-connector{
    transform: rotate(90deg);
    margin-bottom: 45px;
    flex-basis: 100%;
}
}

/* ====================================
   CONTACT SECTION
==================================== */

.contact-section{

  padding:110px 0;

  background:#FFFCF5;
}

.contact-wrapper{

  display:grid;

  grid-template-columns:
  0.85fr 1.15fr;

  gap:40px;

  align-items:start;
}

/* LEFT */

.contact-content h2{

  font-family:'Samsung Sharp Sans',sans-serif;

  font-size:64px;

  line-height:1;

  color:#102A4A;

  margin:15px 0 20px;
}

.contact-content h2 span{
  color:#F9D266;
}

.contact-content p{

  font-size:15px;

  line-height:1.8;

  color:#4C637C;

  max-width:420px;

  margin-bottom:35px;
}

.contact-info h3{

  font-family:'Samsung Sharp Sans',sans-serif;

  font-size:24px;

  margin-bottom:20px;

  color:#102A4A;
}

.contact-item{

  display:flex;

  gap:14px;

  align-items:flex-start;

  margin-bottom:20px;
}

.contact-icon{

  width:42px;
  height:42px;

  border-radius:50%;

  background:#102A4A;

  color:#F9D266;

  display:flex;

  align-items:center;
  justify-content:center;
}

.contact-item strong{

  display:block;

  color:#102A4A;

  margin-bottom:4px;
}

.contact-item span{

  color:#4C637C;

  font-size:14px;
}

/* IMAGE PLACEHOLDER */

.contact-image-placeholder{

  margin-top:25px;

  height:160px;

  border-radius:14px;

  background:#18355A;

  color:#fff;

  display:flex;

  align-items:center;
  justify-content:center;
}

/* FORM */

.contact-form-card{

  background:#fff;

  border:1px solid #F9D266;

  border-radius:20px;

  padding:28px;

  box-shadow:
  0 32px 80px rgba(249,210,102,.20);
}

.form-note{

  font-size:13px;

  margin-bottom:20px;

  color:#4C637C;
}

.form-grid{
  display:grid;
  grid-template-columns:
  repeat(2,1fr);
  gap:16px;
}

.form-grid input,
.form-grid select{

  height:48px;

  border:1px solid #F9D266;

  border-radius:30px;

  padding:0 16px;

  background:#fff;
}

.contact-form textarea{

  width:100%;

  margin-top:16px;

  border:1px solid #F9D266;

  border-radius:12px;

  padding:16px;

  min-height:130px;

  resize:none;
}

.checkbox-group{

  display:flex;

  flex-direction:column;

  gap:10px;

  margin:20px 0;
}

.checkbox-group label{

  font-size:14px;

  color:#102A4A;
}

.contact-submit{

  width:100%;

  height:54px;

  border:none;

  border-radius:30px;

  background:#F9D266;

  color:#102A4A;

  font-family:'Samsung Sharp Sans',sans-serif;

  font-weight:700;

  cursor:pointer;

  display:flex;

  align-items:center;
  justify-content:center;

  gap:10px;
}



.contact-form small{

  display:block;

  text-align:center;

  margin-top:12px;

  color:#777;

  font-size:12px;
}

.form-field{
    display:flex;
    flex-direction:column;
}

.form-field label{
    font-family:'Samsung Sharp Sans',sans-serif;
    font-size:12px;
    font-weight:700;
    color:#102A4A;
    margin-bottom:8px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 20px;
}

.form-grid input{
    height:42px;
    border:1px solid #F9D266;
    border-radius:30px;
    padding:0 16px;
    background:#fff;
    font-size:13px;
}

.form-grid input::placeholder,
textarea::placeholder{
    color:#B9B9B9;
}

.checkbox-group{
    margin:20px 0;
}

.custom-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
    position:relative;
}

.custom-check input{
    position:absolute;
    opacity:0;
}

.checkmark{

    width:18px;
    height:18px;

    min-width:18px;

    border:1px solid #F9D266;

    background:#fff;

    border-radius:2px;

    position:relative;
}

.custom-check input:checked + .checkmark::after{

    content:"✓";

    position:absolute;

    left:3px;
    top:-1px;

    font-size:12px;

    color:#102A4A;

    font-weight:700;
}

.contact-form textarea{

    width:100%;

    min-height:105px;

    border:1px solid #F9D266;

    border-radius:4px;

    padding:14px;

    resize:none;
}

.contact-submit{

    width:100%;
    height:52px;

    border:none;

    border-radius:30px;

    background:#F9D266;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    cursor:pointer;
}

.contact-submit .btn-text{

    font-family:'Samsung Sharp Sans',sans-serif;

    font-size:12px;

    font-weight:700;

    color:#102A4A;

    line-height:1;
}


.contact-form small{

    display:block;

    text-align:center;

    margin-top:12px;

    color:#666;

    font-size:11px;
}

footer.site-footer {
    background: #102A4A;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 25px 0;
  display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
  font-family: 'Neue Montreal';
    font-weight: 500;
    margin-top: 20px;
}

/* ====================================
   MOBILE NAVIGATION
==================================== */

.mobile-toggle {
  display: none;
}

/* ====================================
   LARGE TABLET
==================================== */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
  }

  .service-number {
    font-size: 48px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    padding: 25px;
  }

  .contact-form-card {
    padding: 25px;
  }
  
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  
  .contact-content h2 {
    font-size: 48px !important;
  }
  
  .contact-section .container {
    min-width: 100%;
}

.contact-section{

  padding:110px 20px;
}

  .footer-top {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-logo img {
    margin-inline: auto;
  }
}

/* ====================================
   EXTRA SMALL DEVICES
==================================== */

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1440px);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ====================================
   MOBILE MENU
==================================== */

.mobile-toggle {
  display: none;

  width: 48px;
  height: 48px;

  border: none;

  background: none;

  cursor: pointer;

  position: relative;
}

.mobile-toggle span {
  display: block;

  width: 28px;
  height: 3px;

  background: #fff;

  margin: 5px auto;

  border-radius: 20px;

  transition: 0.3s;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1100px) {
  .mobile-toggle {
    display: block;
  }

  .nav-wrapper {
    position: fixed;

    top: 0;
    right: -100%;

    width: 300px;
    height: 100vh;

    background: #102a4a;

    padding: 100px 30px;

    transition: 0.4s;

    z-index: 999;
  }

  .nav-wrapper.active {
    right: 0;
  }

  .main-nav {
    display: block !important;
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;

    gap: 25px;
  }

  .main-nav a {
    font-size: 18px;
  }
}

.service-card,
.difference-card,
.proof-card,
.triad-card,
.security-card {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s ease;
}

.show {
  opacity: 1;

  transform: translateY(0);
}

.hero-section {
  overflow: hidden;
}

.hero-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(248, 210, 101, 0.15),
    transparent 70%
  );

  top: -250px;
  left: -200px;
}

.hero-section::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(248, 210, 101, 0.08),
    transparent 70%
  );

  bottom: -250px;
  right: -200px;
}

.site-header {
  position: fixed;

  width: 100%;

  top: 20px;

  z-index: 999;
}

.site-header.scrolled .header-wrapper {
  background: rgba(15, 41, 73, 0.95);

  backdrop-filter: blur(30px);
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-bottom img {
    width: 260px;
}