/* ==========================================================================
   NEXT THEME V2 VISUAL STYLE EXTRACTION
   Restored premium trade-counter aesthetic layer
   ========================================================================== */

:root{
  --navy:#101827;
  --navy2:#17366f;
  --orange:#ff5a00;
  --orange2:#d94800;
  --light:#f4f6fa;
  --card:#ffffff;
  --text:#1a2233;
  --muted:#6c7589;
  --border:#e7ebf3;

  --radius:22px;
  --radius-sm:14px;

  --shadow:
    0 10px 30px rgba(16,24,39,.08);

  --shadow-hover:
    0 18px 42px rgba(16,24,39,.14);

  --gradient:
    linear-gradient(
      135deg,
      #101827 0%,
      #142f61 55%,
      #8f3a18 140%
    );

  --transition:.22s ease;
}

/* ==========================================================================
   BASE
   ========================================================================== */

/*body{*/
/*  background:#eef2f7;*/
/*  color:var(--text);*/
/*  font-family:*/
/*    Inter,*/
/*    system-ui,*/
/*    sans-serif;*/

/*  margin:0;*/
/*  padding:0;*/

/*  -webkit-font-smoothing:antialiased;*/
/*}*/

/*.container{*/
/*  width:min(1440px,calc(100% - 48px));*/
/*  margin:auto;*/
/*}*/

/*section{*/
/*  margin-bottom:28px;*/
/*}*/

/* ==========================================================================
   HEADER
   ========================================================================== */

/*.site-header{*/
/*  position:sticky;*/
/*  top:0;*/
/*  z-index:200;*/

/*  background:#fff;*/
/*  box-shadow:*/
/*    0 1px 0 rgba(16,24,39,.05);*/

/*  transition:transform .28s ease;*/
/*}*/

/*.site-header.hide{*/
/*  transform:translateY(-100%);*/
/*}*/

/*.top-alert{*/
/*  background:#08111f;*/
/*  color:#fff;*/

/*  font-size:12px;*/
/*  font-weight:700;*/
/*  letter-spacing:.04em;*/

/*  text-align:center;*/

/*  padding:8px 16px;*/
/*}*/

/*.header-main{*/
/*  display:flex;*/
/*  align-items:center;*/
/*  justify-content:space-between;*/
/*  gap:24px;*/

/*  padding:18px 24px;*/
/*}*/

/*.brand{*/
/*  display:flex;*/
/*  align-items:center;*/
/*  gap:18px;*/

/*  text-decoration:none;*/
/*  color:inherit;*/
/*}*/

/*.brand img{*/
/*  height:72px;*/
/*  width:auto;*/
/*}*/

/*.brand span{*/
/*  font-weight:700;*/
/*  color:#4d5668;*/
/*}*/

/*.header-links{*/
/*  display:flex;*/
/*  gap:20px;*/
/*}*/

/*.header-links a{*/
/*  color:#2d3646;*/
/*  text-decoration:none;*/
/*  font-weight:600;*/
/*}*/

/*.header-links a:hover{*/
/*  color:var(--orange);*/
/*}*/

/*.site-search{*/
/*  display:flex;*/
/*  align-items:center;*/
/*  gap:10px;*/
/*}*/

/*.site-search input{*/
/*  width:280px;*/

/*  padding:14px 18px;*/

/*  border-radius:16px;*/
/*  border:1px solid var(--border);*/

/*  background:#fff;*/
/*}*/

/*.header-actions{*/
/*  display:flex;*/
/*  align-items:center;*/
/*  gap:12px;*/
/*}*/

/*.main-nav{*/
/*  display:flex;*/
/*  gap:12px;*/

/*  padding:*/
/*    0 24px*/
/*    18px;*/
/*}*/

/*.main-nav a{*/
/*  background:#fff;*/

/*  border:1px solid var(--border);*/

/*  padding:10px 18px;*/

/*  border-radius:999px;*/

/*  text-decoration:none;*/
/*  color:#1e2635;*/

/*  font-weight:700;*/
/*  font-size:14px;*/

/*  transition:var(--transition);*/
/*}*/

/*.main-nav a:hover{*/
/*  background:var(--navy);*/
/*  color:#fff;*/
/*}*/

/* ==========================================================================
   HERO
   ========================================================================== */

.hero{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:26px;

  align-items:stretch;
}

.hero-copy{
  position:relative;
  overflow:hidden;

  background:var(--gradient);

  color:#fff;

  border-radius:34px;

  padding:42px;

  min-height:360px;

  box-shadow:var(--shadow);
}

.hero-copy::after{
  content:'';

  position:absolute;
  right:-140px;
  bottom:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.12),
      transparent 70%
    );
}

.eyebrow{
  color:#ffb27f;

  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;

  text-transform:uppercase;

  margin-bottom:16px;
}

.hero h1{
  font-size:72px;
  line-height:.94;
  letter-spacing:-.05em;

  margin:
    0 0
    24px;
}

.hero p{
  font-size:22px;
  line-height:1.55;

  color:rgba(255,255,255,.88);

  max-width:760px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;

  margin-top:32px;
}

.hero-panel{
  display:flex;
}

.counter-card{
  background:#fff;

  border-radius:28px;

  padding:34px;

  width:100%;

  box-shadow:var(--shadow);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.counter-card b{
  font-size:38px;
  line-height:1.05;
}

.counter-card strong{
  font-size:56px;
  color:var(--orange);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-strip > div{
  background:#fff;

  border-radius:20px;

  padding:24px;

  box-shadow:var(--shadow);
}

.trust-strip b{
  display:block;

  font-size:20px;

  margin-bottom:10px;
}

.trust-strip span{
  color:var(--muted);
  line-height:1.5;
}

/* ==========================================================================
   SECTION
   ========================================================================== */

.section{
  background:#fff;

  border-radius:30px;

  padding:34px;

  box-shadow:var(--shadow);
}

.section.blue{
  background:#102556;
  color:#fff;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;

  gap:24px;

  margin-bottom:28px;
}

.section-head h2{
  font-size:54px;
  line-height:1;

  margin:0 0 10px;
}

.section-head p{
  color:var(--muted);
  margin:0;
}

.section.blue .section-head p{
  color:rgba(255,255,255,.75);
}

/* ==========================================================================
   PACKAGE CARDS
   ========================================================================== */

.package-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.package-card{
  position:relative;

  background:#fff;

  border:2px solid #edf1f7;

  border-radius:26px;

  padding:28px;

  min-height:420px;

  display:flex;
  flex-direction:column;

  transition:var(--transition);
}

.package-card:hover{
  transform:translateY(-6px);

  box-shadow:var(--shadow-hover);
}

.package-card.featured{
  border-color:var(--orange);
}

.package-tag{
  display:inline-flex;
  align-items:center;

  width:max-content;

  background:#fff0e8;
  color:var(--orange);

  border-radius:999px;

  padding:8px 14px;

  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;

  text-transform:uppercase;

  margin-bottom:18px;
}

.package-card h3{
  font-size:42px;
  line-height:1;

  margin:
    0 0
    18px;
}

.package-card p{
  color:var(--muted);
  line-height:1.6;

  margin-bottom:24px;
}

.package-price{
  font-size:58px;
  font-weight:900;

  margin-bottom:22px;
}

.package-card ul{
  margin:0;
  padding-left:20px;

  display:flex;
  flex-direction:column;
  gap:10px;

  color:#475064;

  flex:1;
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  position:relative;

  background:#fff;

  border-radius:24px;

  min-height:360px;

  overflow:hidden;

  box-shadow:var(--shadow);

  transition:var(--transition);

  display:flex;
  flex-direction:column;
}

.product-card:hover{
  transform:translateY(-6px);

  box-shadow:var(--shadow-hover);
}

.product-card::before{
  content:'';

  display:block;

  height:140px;

  background:
    linear-gradient(
      135deg,
      #17366f,
      #101827
    );
}

.product-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 22px 0;
}

.product-top span{
  font-size:11px;
  font-weight:800;

  letter-spacing:.08em;
  text-transform:uppercase;

  color:#6f7b92;
}

.product-top em{
  font-style:normal;

  background:#e8fff0;
  color:#00853d;

  padding:6px 10px;

  border-radius:999px;

  font-size:11px;
  font-weight:800;
}

.product-card h3{
  font-size:32px;
  line-height:1.05;

  padding:0 22px;

  margin:
    18px 0
    14px;
}

.product-card p{
  padding:0 22px;

  color:#5d6678;

  line-height:1.6;

  flex:1;
}

.product-bottom{
  padding:22px;

  display:flex;
  flex-direction:column;
  gap:18px;
}

.product-bottom strong{
  font-size:34px;
}

.product-actions{
  display:flex;
  gap:10px;
}

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */

.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.before-after > div{
  background:#fff;

  border-radius:24px;

  padding:32px;

  box-shadow:var(--shadow);
}

.before-after h2{
  font-size:42px;
  margin-top:0;
}

.before-after li{
  margin-bottom:14px;
  color:#566173;
}

/* ==========================================================================
   CTA / FINANCE
   ========================================================================== */

.finance-band,
.cta-band{
  background:var(--gradient);

  color:#fff;

  border-radius:30px;

  padding:40px;

  box-shadow:var(--shadow);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.finance-band h2,
.cta-band h2{
  font-size:54px;
  line-height:1;

  margin:0 0 16px;
}

.finance-band p,
.cta-band p{
  color:rgba(255,255,255,.82);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn{
  border:none;
  outline:none;

  border-radius:16px;

  padding:14px 5px;

  font-weight:800;
  font-size:15px;

  cursor:pointer;

  transition:var(--transition);

  text-decoration:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.primary{
  background:#1e5eff;
  color:#fff;
}

.btn.orange{
  background:var(--orange);
  color:#fff;
}

.btn.orange:hover{
  background:var(--orange2);
}

.btn.dark{
  background:#101827;
  color:#fff;
}

.btn.light{
  background:#fff;
  color:#101827;
}

.btn.ghost{
  background:#fff;

  border:1px solid var(--border);

  color:#101827;
}

.btn.big{
  padding:18px 28px;
  font-size:17px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer{
  background:#07111f;
  color:#fff;

  margin-top:60px;

  padding-top:50px;
}

.footer-grid{
  width:min(1440px,calc(100% - 48px));
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:32px;

  padding-bottom:40px;
}

.footer-grid img{
  width:180px;
}

.footer-grid h4{
  margin-top:0;
}

.footer-grid a{
  display:block;

  color:#cfd7e6;

  text-decoration:none;

  margin-bottom:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);

  text-align:center;

  padding:20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width:1200px){

  .hero,
  .package-grid,
  .product-grid,
  .trust-strip,
  .before-after,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:860px){

  .hero,
  .package-grid,
  .product-grid,
  .trust-strip,
  .before-after,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .header-main{
    flex-wrap:wrap;
  }

  .hero h1{
    font-size:48px;
  }

  .section-head h2{
    font-size:38px;
  }

  .finance-band,
  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-search input{
    width:100%;
  }
}