:root{
  --bg0:#060A14;
  --bg1:#0b1220;

  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);

  --text:#f4f7ff;
  --muted: rgba(244,247,255,.78);
  --muted2: rgba(244,247,255,.62);

  --gold:#e7b65a;
  --gold2:#f3d58a;

  --shadow: 0 14px 40px rgba(0,0,0,.30);
  --shadow2: 0 20px 60px rgba(0,0,0,.35);

  --max:1120px;
  --r:16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, #070b13 100%);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; text-decoration:none; }

.container{
  max-width: var(--max);
  margin:0 auto;
  padding: 0 22px;
}

/* =========================
   HEADER / NAV
   ========================= */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(6,10,20,.96), rgba(6,10,20,.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 180px;
}
.brand img{
  height:44px;
  width:44px;
  border-radius:10px;
  background:#fff;
}
.brand .name{
  font-weight: 900;
  letter-spacing: .2px;
}

.links{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: nowrap;
}

.links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}
.links a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.links .cta{
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0b1220;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(231,182,90,.22);
}

/* =========================
   HERO (VIDEO)
   ========================= */
.hero{
  position: relative;
  min-height: 78vh;
  display:flex;
  align-items:stretch;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* overlay above video, below content */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 40%, rgba(0,0,0,.06), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(6,10,20,.10) 0%, rgba(6,10,20,.24) 55%, rgba(6,10,20,.55) 100%);
  z-index: 1;
}

.hero-video{ position: relative; }

.hero-video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.02) contrast(1.02);
}

/* Hero inner */
.container.inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 22px 26px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;   /* keep text low */
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* This class is in your HTML */
.hero-min{
  min-height: 78vh;
}

/* Kicker pill */
.kicker{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(6,10,20,.40);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.kicker span{
  color: var(--gold2);
  font-weight: 900;
}

/* Hide old h1 if ever present */
.hero h1{ display:none !important; }

/* =========================
   ONE LINE HEADLINE ON VIDEO
   ========================= */
.hero-headline{
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 950;
  letter-spacing: -0.3px;
  color: rgba(244,247,255,.96);
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
  margin-top: 6px;
}

.hero-headline span{
  font-weight: 1000;
  color: transparent;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  /* iPad Safari fix */
  -webkit-text-fill-color: transparent;
}

/* =========================
   CTA ROW (LEFT + RIGHT)
   ========================= */
.hero-cta-row{
  width: 100%;
  max-width: var(--max);
  padding: 0 8px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,10,20,.26);
  color:#fff;
  font-weight: 800;
  min-width: 220px;
}
.btn:hover{ background: rgba(255,255,255,.06); }

.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b1220;
  box-shadow: 0 10px 26px rgba(231,182,90,.22);
}

/* =========================
   AFTER HERO “SHINY GLASS”
   ========================= */
.hero-after{
  padding: 22px 0 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.after-glass{
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  color: rgba(244,247,255,.92);
  line-height: 1.65;
  font-weight: 600;
}

.after-glass::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  background:
    radial-gradient(700px 220px at 15% 20%, rgba(231,182,90,.22), rgba(0,0,0,0) 60%),
    radial-gradient(700px 220px at 85% 60%, rgba(47,125,255,.18), rgba(0,0,0,0) 60%),
    linear-gradient(120deg, rgba(231,182,90,.0), rgba(231,182,90,.10), rgba(47,125,255,.08), rgba(231,182,90,0));
  opacity: .85;
}

/* chips */
.pill{
  position: relative;
  display:inline-block;
  padding: 6px 10px;
  margin: 0 2px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  background: rgba(6,10,20,.30);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}

/* accent words */
.accent{
  position: relative;
  display:inline-block;
  font-weight: 1000;
  color: transparent;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* iPad Safari fix */
}

.accent::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(231,182,90,0), rgba(231,182,90,.9), rgba(231,182,90,0));
  opacity:.55;
}

/* =========================
   SECTIONS
   ========================= */
.section{
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(231,182,90,.10), rgba(0,0,0,0) 60%),
    radial-gradient(700px 280px at 85% 30%, rgba(47,125,255,.08), rgba(0,0,0,0) 60%);
  opacity:.75;
}
.section .container{ position:relative; z-index:1; }

h2{ font-size: 30px; margin: 0 0 10px; }
.lead{ color: rgba(255,255,255,.90); }

/* =========================
   GRID / CARDS
   ========================= */
.grid{
  display:grid;
  gap: 18px;
  margin-top: 18px;
}

@media (min-width: 1025px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  padding: 22px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(231,182,90,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.055));
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }

.more{
  display:inline-block;
  margin-top: 12px;
  font-weight: 900;
  color: var(--gold2);
}

/* Stagger */
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}
.card{ opacity:0; animation: fadeUp .65s ease forwards; }
.card:nth-child(1){ animation-delay: .05s; }
.card:nth-child(2){ animation-delay: .12s; }
.card:nth-child(3){ animation-delay: .19s; }
.card:nth-child(4){ animation-delay: .26s; }
.card:nth-child(5){ animation-delay: .33s; }
.card:nth-child(6){ animation-delay: .40s; }
.card:nth-child(7){ animation-delay: .47s; }
.card:nth-child(8){ animation-delay: .54s; }

@media (prefers-reduced-motion: reduce){
  .card{ opacity:1; animation:none; }
  .card:hover{ transform:none; }
}

/* =========================
   FOUNDER / SPLIT
   ========================= */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.split > div:first-child{ max-width: 640px; }

.portrait{
  width: 100%;
  max-width: 470px;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 28px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(231,182,90,.08) inset;
}

.founder-photo{ position: relative; display:inline-block; }
.founder-linkedin{
  position:absolute;
  bottom:18px;
  right:18px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 800;
  color:#0b1220;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 26px rgba(231,182,90,.28), 0 0 0 1px rgba(255,255,255,.22) inset;
  transition: transform .2s ease, box-shadow .2s ease;
}
.founder-linkedin:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(231,182,90,.38), 0 0 0 1px rgba(255,255,255,.28) inset;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 34px 0;
  background: rgba(6,10,20,.35);
  border-top: 1px solid rgba(255,255,255,.10);
}
.cols{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.small{ color: var(--muted2); font-size: 13px; }

.social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social a{
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}
.social a:hover{ color:#fff; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; gap: 20px; }
  .portrait{ max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px){
  /* keep video ON; reduce text dominance */
  .hero{ min-height: 86vh; }
  .hero-min{ min-height: 86vh; }
  .container.inner{ padding: 18px 16px 18px; }
  .kicker{ font-size: 12px; }

  .hero-headline{
    font-size: 20px;
    padding: 0 8px;
  }

  .hero-cta-row{
    padding: 0 6px;
    gap: 10px;
  }
  .btn{
    min-width: 0;
    width: 48%;
    padding: 13px 14px;
  }
}

@media (max-width: 640px){
  .container{ padding: 0 16px; }

  /* mobile header: only CTA */
  .brand .name{ display:none; }
  .links a{ display:none; }
  .links a.cta{
    display:inline-flex;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  /* hero CTA: still left/right but fits */
  .hero-cta-row{
    padding: 0;
  }
  .btn{
    width: 48%;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .cols{ grid-template-columns: 1fr; }

  .founder-linkedin{
    bottom:14px;
    right:14px;
    font-size: 13px;
    padding: 9px 12px;
  }
}

/* =========================
   iPad/tablet specific: make sure CTA hits corners
   ========================= */
@media (min-width: 768px) and (max-width: 1180px){
  .hero-cta-row{
    max-width: none;
    padding: 0 18px;
    justify-content: space-between;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-video-bg{ display:none; }
  .hero{
    background-image: url("assets/images/hero/hero-home.jpg");
    background-size: cover;
    background-position: center;
  }
}/* =========================
   CONTACT FORM
   ========================= */
.contact-form{
  display:grid;
  gap: 14px;
}

.contact-form label{
  display:flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,10,20,.35);
  color: #fff;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(231,182,90,.25);
}

.contact-form textarea{
  resize: vertical;
}
/* =========================
   CONTACT FORM
   ========================= */
.contact-form{
  display:grid;
  gap: 14px;
}

.contact-form label{
  display:flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,10,20,.35);
  color: #fff;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(231,182,90,.25);
}

.contact-form textarea{
  resize: vertical;
}
/* =========================
   CONTACT PAGE – PREMIUM UI
   ========================= */
.contact-hero{
  position: relative;
  padding: 34px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(231,182,90,.16), rgba(0,0,0,0) 60%),
    radial-gradient(900px 320px at 85% 30%, rgba(47,125,255,.12), rgba(0,0,0,0) 60%);
}

.contact-hero-inner{
  max-width: 860px;
  padding: 18px 0;
}

.contact-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(6,10,20,.38);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(244,247,255,.92);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.contact-title{
  margin: 12px 0 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.contact-subtitle{
  margin: 0;
  max-width: 760px;
  color: rgba(244,247,255,.84);
  font-size: 16.5px;
  line-height: 1.6;
}

.contact-section{ padding-top: 30px; }

/* Layout */
.contact-layout{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items: start;
}

.contact-card{
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
}

.contact-card h2{ margin: 0 0 6px; font-size: 22px; }
.contact-card h3{ margin: 0 0 6px; font-size: 18px; }

/* Premium glass + subtle glow */
.contact-glass{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,10,20,.52), rgba(6,10,20,.22));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.contact-glass::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(700px 260px at 18% 15%, rgba(231,182,90,.22), rgba(0,0,0,0) 62%),
    radial-gradient(700px 260px at 85% 55%, rgba(47,125,255,.18), rgba(0,0,0,0) 62%);
  opacity: .95;
}

.contact-card-head{
  position: relative;
  z-index: 1;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}

/* Form */
.contact-form{
  position: relative;
  z-index: 1;
  display:grid;
  gap: 14px;
}

.contact-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label{
  display:flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(244,247,255,.80);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,10,20,.38);
  color: #fff;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(244,247,255,.50);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: rgba(231,182,90,.75);
  box-shadow: 0 0 0 2px rgba(231,182,90,.22);
}

.contact-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.contact-submit{
  min-width: 210px;
  padding: 12px 18px;
  border-radius: 14px;
}

.contact-note{ opacity: .92; }

.contact-trust{
  margin-top: 8px;
  color: rgba(244,247,255,.62);
}

/* Side cards */
.contact-side{
  display:grid;
  gap: 12px;
}

.contact-social{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-social a{
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(244,247,255,.82);
}

.contact-social a:hover{ color:#fff; }

.contact-mini-glass{
  background: linear-gradient(180deg, rgba(6,10,20,.45), rgba(6,10,20,.18));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.contact-steps{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(244,247,255,.78);
}

.contact-steps li{ margin: 7px 0; }

/* THANK YOU PAGE */
.thank-card{
  max-width: 860px;
  margin: 0 auto;
  padding: 26px 22px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(6,10,20,.48), rgba(6,10,20,.18));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.thank-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(760px 260px at 20% 15%, rgba(231,182,90,.22), rgba(0,0,0,0) 62%),
    radial-gradient(760px 260px at 85% 55%, rgba(47,125,255,.18), rgba(0,0,0,0) 62%);
  opacity: .95;
}

.thank-card > *{ position: relative; z-index: 1; }

.thank-badge{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(231,182,90,.18);
  border: 1px solid rgba(231,182,90,.35);
  color: rgba(244,247,255,.92);
  font-size: 13px;
  font-weight: 800;
}

.thank-actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .contact-row{ grid-template-columns: 1fr; }
  .contact-title{ letter-spacing: -0.3px; }
  .contact-actions{ justify-content: stretch; }
  .contact-submit{ width: 100%; min-width: 0; }
  /* =========================
   WHATSAPP FLOATING BUTTON
   ========================= */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #0b1220;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  text-decoration: none;

  box-shadow:
    0 10px 26px rgba(37,211,102,.45),
    0 0 0 2px rgba(255,255,255,.22);

  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover{
  transform: translateY(-3px);
  box-shadow:
    0 14px 34px rgba(37,211,102,.55),
    0 0 0 2px rgba(255,255,255,.32);
}

.whatsapp-icon{
  line-height: 1;
}

/* Mobile spacing tweak */
@media (max-width: 640px){
  .whatsapp-float{
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}
}
