

/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#F4F5F7;
  --white:#ffffff;
  --accent:#27ae60;
  --accent-dark:#1e8449;
  --accent-light:rgba(39,174,96,0.09);
  --accent-border:rgba(39,174,96,0.22);
  --text:#0f0f0f;
  --text-2:#444;
  --muted:#777;
  --border:rgba(0,0,0,0.08);
  --card:#ffffff;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover:0 16px 48px rgba(39,174,96,0.12),0 4px 16px rgba(0,0,0,0.06);
}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans',sans-serif;
  font-weight:400;
  line-height:1.6;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal{opacity:0;transform:translateY(12px);transition:opacity 0.35s ease,transform 0.35s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-left{opacity:0;transform:translateX(-10px);transition:opacity 0.35s ease,transform 0.35s ease}
.reveal-left.visible{opacity:1;transform:none}
.reveal-right{opacity:0;transform:translateX(10px);transition:opacity 0.35s ease,transform 0.35s ease}
.reveal-right.visible{opacity:1;transform:none}


/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container-new{max-width:1100px;margin-inline:auto;padding-inline:24px}
.section-label {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    padding: 5px 14px; border-radius: 100px;
  }

  .work-header-new {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    margin-bottom: 48px;
  }

  .title-new {
    font-family: 'Syne', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }

  .title-new span { color: var(--accent); }
  
.fw-section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: #111828;
      margin: 0;
    }

    .fw-section-title .fw-dot {
      color: #27ae60;
    }

    .fw-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #27ae60;
      margin-bottom: 1rem;
    }

    .fw-eyebrow::before {
      content: '';
      display: inline-block;
      width: 22px;
      height: 2px;
      background: #27ae60;
      border-radius: 2px;
      flex-shrink: 0;
    }
.preview-card{
    margin-bottom:15px;
}
/* ═══════════════════════════════════════
   FREE CONSULTATION STRIP
═══════════════════════════════════════ */
.consult-strip {
  background: #111828;
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 24px 64px rgba(0,0,0,0.35);
  max-width: 1100px;
  width: auto;              /* don't stretch to full viewport */
  margin: 60px 24px;        /* side margins prevent edge-touching on small screens */
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.07);
margin-bottom:120px;
}

/* On large screens, center it properly */
@media (min-width: 1148px) {
  .consult-strip {
    margin: 60px auto;
  }
}
.consult-card {
  width: 100%;
  max-width: 380px;
  background: #f9f9f9;        /* light card on the right */
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: none;
  box-shadow: 0 8px 40px rgba(15,17,21,0.10);
margin-bottom:60px;
}
.consult-strip::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,174,96,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.consult-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.consult-inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

/* ── Left Side ── */
.consult-left { display: flex; flex-direction: column; gap: 0; }

.consult-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 0px solid rgba(39,174,96,0.3);
  padding: 5px 14px;
  border-radius: 10px;
  margin-bottom: 24px;
  margin-top:-45px;
  margin-left: auto;       /* ← Added to center the badge itself */
  margin-right: auto;      /* ← Added to center the badge itself */
}
.rule { 
  width: 40px; 
  height: 3px; 
  border-radius: 2px; 
  background: var(--accent); 
  /* Centering attributes */
  margin: 0 auto 16px auto;
}

.consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  padding: 4px 14px;
  border-radius: 15px;
  margin-bottom: 24px;

}
.consult-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(39,174,96,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.consult-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.consult-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
  border-left: 2px solid rgba(39,174,96,0.4);
  padding-left: 14px;
}
.consult-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.consult-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.consult-perks li svg {
  width: 16px; height: 16px;
  stroke: #27ae60;
  flex-shrink: 0;
}
/* ── Pill Wrapper ── */
.consult-btn-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px;
  gap: 4px;
  width: fit-content;
}

/* ── Shared Button Base ── */
.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  padding: 11px 20px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.consult-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

/* ── WhatsApp Button ── */
.consult-btn--whatsapp {
  background: #27ae60;
  color: #0b1f12;
}
.consult-btn--whatsapp svg {
  fill: #0b1f12;
  stroke: none;
}
.consult-btn--whatsapp:hover {
  background: #2ecc71;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(39,174,96,0.35);
}

/* ── Chatbot Button ── */
.consult-btn--chat {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,1.85);
}
.consult-btn--chat svg {
  stroke: rgba(255,255,255,0.85);
  fill: none;
}
.consult-btn--chat:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
/* ── Right Side – Card ── */
.consult-right { display: flex; justify-content: flex-end; }
.consult-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.consult-card-top { margin-bottom: 20px; }
.consult-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.consult-avatar {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #27ae60, #1e8449);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(39,174,96,0.35);
}
.consult-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.consult-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.consult-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}
.consult-card-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consult-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.consult-detail-row svg {
  width: 16px; height: 16px;
  stroke: #27ae60;
  flex-shrink: 0;
}
.consult-card-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.consult-card-cta-note svg {
  width: 13px; height: 13px;
  stroke: rgba(39,174,96,0.55);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .consult-right { justify-content: flex-start; }
  .consult-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .consult-strip { padding: 64px 20px; }
  .consult-btn { width: 100%; justify-content: center; }
}



 
 /* ═══════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════ */
.projects-gallery-new{padding:90px 0 80px}
.card-new{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(308px,1fr));
  gap:16px;
}
.featurecard{
  position:relative;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 26px 28px;
  display:flex;flex-direction:column;gap:18px;
  overflow:hidden;
  transition:border-color .35s,transform .35s,box-shadow .35s;
  cursor:default;
}
.featurecard::before{
  content:'';position:absolute;
  top:-50px;left:-50px;
  width:150px;height:150px;border-radius:50%;
  background:radial-gradient(circle,rgba(39,174,96,0.10) 0%,transparent 70%);
  opacity:0;transition:opacity .4s;pointer-events:none;
}
.featurecard:hover{
  border-color:var(--accent-border);
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.featurecard:hover::before{opacity:1}
.card-num{
  position:absolute;top:18px;right:20px;
  font-family:'Syne',sans-serif;
  font-size:11px;font-weight:700;
  color:rgba(0,0,0,0.10);letter-spacing:.05em;
}
.feature-icon-new{
  width:50px;height:50px;
  background:var(--accent-light);
  border:1px solid var(--accent-border);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:background .3s,border-color .3s;
}
.feature-icon-new svg{
  width:22px;height:22px;
  stroke:var(--accent);color:var(--accent);
}
.featurecard:hover .feature-icon-new{
  background:rgba(39,174,96,0.14);
  border-color:rgba(39,174,96,0.38);
}
.feature-content-new h3{
  font-family:'Syne',sans-serif;
  font-size:16px;font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text);margin-bottom:6px;
}
.feature-content-new p{
  font-size:14px;color:var(--muted);
  line-height:1.65;font-weight:300;
}

/* card4 svg fix */
.feature-icon-new svg rect[fill="#ffffff"],.feature-icon-new svg path[fill="#ffffff"]{fill:var(--accent)}
.feature-icon-new svg rect[fill="#000000"],.feature-icon-new svg circle[fill="#000000"]{fill:#fff}
 

/* ═══════════════════════════════════════
   PROJECT DEVICE MOCKUP CARDS
═══════════════════════════════════════ */
.projects-ftw {
  padding: 0 0 90px;
  background: #f4f5f7;
}

.port-projects-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Card ── */
.port-card {
  background: #F4F5F7;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.1),
              box-shadow 0.32s ease,
              border-color 0.25s;
box-shadow: 0 2px 12px rgba(0,0,0,0.11);
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.10);
  border-color: rgba(39,174,96,0.3);
}

/* ── Index Badge ── */
.port-card-index {
  position: absolute;
  top: 14px; left: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  z-index: 10;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
}

/* ── Mockup Stage ── */
.mockup-stage {
  background: linear-gradient(145deg, #0f1115 0%, #1a2235 100%);
  padding: 28px 22px 18px;
  position: relative;
  height: 210px;
  overflow: hidden;
}
.mockup-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(39,174,96,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.mockup-stage::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,174,96,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP MONITOR
═══════════════════════════════════════════════════════════ */
.mock-desktop {
  position: absolute;
  left: 18px; bottom: 18px;
  width: 71%;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
  z-index: 4;
}

/* ── Bezel – Dark Titanium ── */
.mock-bezel {
  background: linear-gradient(175deg, #3a3a3c 0%, #1c1c1e 100%);
  border-radius: 10px 10px 0 0;
  padding: 4px 4px 0;
  position: relative;
  overflow: hidden;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  border-left: 0.5px solid rgba(255,255,255,0.10);
  border-right: 0.5px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.6);
}
.mock-bezel::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 60%; height: 160%;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.06) 60%,
    rgba(255,255,255,0.00) 100%
  );
  transform: skewX(-12deg);
  pointer-events: none;
  z-index: 2;
}

/* ── Top Bar – webcam only, no dots ── */
.mock-screen-bar {
  display: flex; align-items: center;
  padding: 0 3px 4px;
  position: relative;
}
.mock-dot { display: none; }

.mock-webcam {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a2a 0%, #0a0a0a 60%);
  border: 0.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}
.mock-webcam::after {
  content: '';
  position: absolute;
  top: 1px; left: 1px;
  width: 1.5px; height: 1.5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* ── Screen ── */
.mock-screen {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: #0f1115;
  position: relative;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8);
}
.mock-screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 3px 3px 0 0;
}
.mock-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 3.5s ease;
}
.port-card:hover .mock-screen img { transform: translateY(-1%); }

/* ── Chin – Dark Titanium ── */
.mock-chin {
  height: 6px;
  background: linear-gradient(180deg, #3a3a3c 0%, #1c1c1e 100%);
  border-radius: 0 0 10px 10px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* ── Neck ── */
.mock-neck {
  width: 18%; height: 12px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  margin: 0 auto;
}

/* ── Foot ── */
.mock-foot {
  width: 38%; height: 3px;
  background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2a 100%);
  margin: 0 auto;
  border-radius: 3px 3px 2px 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5), inset 0 0.5px 0 rgba(255,255,255,0.12);
}
.mock-foot::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 10%;
  width: 80%; height: 4px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 80%);
  filter: blur(2px);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════
   iPHONE
═══════════════════════════════════════════════════════════ */
.mock-mobile {
  position: absolute;
  right: 14px; bottom: 18px;
  width: 8%; min-width: 65px;
  z-index: 5;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}

/* ── Phone Bezel – Dark Titanium ── */
.mock-phone-bezel {
  background: linear-gradient(172deg, #3a3a3c 0%, #1c1c1e 100%);
  border-radius: 14px;
  padding: 2px;
  position: relative;
  display: flex; flex-direction: column;
  overflow: visible;
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.8),
    inset 0 0.5px 0 rgba(255,255,255,0.15),
    inset 0 -0.5px 0 rgba(255,255,255,0.05);
}

/* ── Hardware Buttons ── */
.mock-btn-action, .mock-btn-vol-up, .mock-btn-vol-down,
.mock-btn-power, .mock-btn-camera-control {
  position: absolute; width: 1.5px;
  background: linear-gradient(180deg, #4a4a4a, #2a2a2a);
  border-radius: 1px;
}
.mock-btn-action         { left: -1px;  top: 12%;    height: 3%; }
.mock-btn-vol-up         { left: -1px;  top: 19%;    height: 8%; }
.mock-btn-vol-down       { left: -1px;  top: 29%;    height: 8%; }
.mock-btn-power          { right: -1px; top: 22%;    height: 12%; }
.mock-btn-camera-control { right: -1px; bottom: 22%; height: 6%; }

/* ── Phone Screen ── */
.mock-phone-screen {
  width: 100%; aspect-ratio: 9 / 19.5;
  border-radius: 12px; overflow: hidden;
  background: #000; position: relative;
}
.mock-dynamic-island {
  position: absolute;
  top: 3px; left: 50%; transform: translateX(-50%);
  width: 28%; height: 3px;
  background: #070707;
  border-radius: 4px; z-index: 10;
}
.mock-phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.mock-home-indicator {
  position: absolute;
  bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 1.5px;
  background: rgba(255,255,255,0.4);
  border-radius: 10px; z-index: 20;
  box-shadow: 0 0 2px rgba(0,0,0,0.4);
}
.mock-phone-screen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 15%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none; z-index: 15;
}

/* ═══════════════════════════════════════════════════════════
   CARD BODY
═══════════════════════════════════════════════════════════ */
.port-card-body {
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.port-card-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.port-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #27ae60;
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.port-card .ftw-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: #0f1115;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.port-card-body p {
  font-size: 13px;
  color: rgba(15,17,21,0.75);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ── Button ── */
.port-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f1115;
  border: 1px solid rgba(15,17,21,0.14);
  background: transparent;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s,
              transform 0.22s, box-shadow 0.22s;
}
.port-btn svg { width: 14px; height: 14px; transition: transform 0.22s; }
.port-btn:hover {
  background: #0f1115;
  color: #fff;
  border-color: #0f1115;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,17,21,0.15);
}
.port-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════
   FEATURE SECTION
═══════════════════════════════════════ */
.ftw-features-green {
  padding: 90px 0 80px;
  background: #F4F5F7;
  position: relative;
  overflow: hidden;
}

.ftw-feat-glow { display: none; }
.ftw-feat-glow-1 { display: none; }
.ftw-feat-glow-2 { display: none; }

/* 4-column grid */
.ftw-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .ftw-feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ftw-feat-grid { grid-template-columns: 1fr; }
}

/* Individual card */

/* Number badge */
.ftw-feat-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.12);
}

/* Icon box */
.ftw-feat-icon {
  width: 54px;
  height: 54px;
  background: rgba(39, 174, 96, 0.09);
  border: 1px solid rgba(39, 174, 96, 0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}

.ftw-feat-card:hover .ftw-feat-icon {
  background: rgba(39, 174, 96, 0.16);
}

.ftw-feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #27ae60;
}

/* Text */
.ftw-feat-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ftw-feat-body p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   CATEGORY LABELS
═══════════════════════════════════════ */
.ctc2-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px; 
  width: 100%; 
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #27ae60; 
}


.ctc2-eyebrow::after {
  content: "";
  flex-grow: 1; 
  height: 1px; 
  
   background: linear-gradient(
    to right, 
    rgba(39, 174, 96, 0.5), 
    rgba(39, 174, 96, 0)
  );
}


.svc-category-label {
  margin: 44px 0 16px;
}

.svc-cat-pill {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: rgba(39, 174, 96, 0.29);
  border: 1px solid rgba(39, 174, 96, 0.22);
  padding: 5px 14px;
  border-radius: 100px;
}
/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.hiw-section {
  padding: 90px 0 80px;
  background: #F4F5F7;
  position: relative;
  
box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.01),
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    0 20px 25px -5px rgba(0, 0, 0, 0.04);
    }
.hiw-glow {
  display: none;
}
.hiw-glow-1 {
  display: none;
}
.hiw-glow-2 {
  display: none;
}
.hiw-title { color: var(--text) !important; }
.hiw-title span { color: var(--accent) !important; }
.hiw-label {
  color: #000 !important;
  background: var(--accent-light) !important;
  border-color: var(--accent-border) !important;
}
.hiw-header { margin-bottom: 56px; }
.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hiw-step {
  flex: 1 1 220px;
  max-width: 300px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hiw-step:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hiw-step-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.32);
}
.hiw-step-icon {
  width: 54px; height: 54px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.hiw-step:hover .hiw-step-icon { background: rgba(39,174,96,0.16); }
.hiw-step-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.hiw-step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hiw-step-body p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 400;
}
.hiw-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.20);
}
.hiw-connector svg { width: 40px; height: 16px; }
@media (max-width: 768px) {
  .hiw-steps { flex-direction: column; gap: 0; }
  .hiw-connector {
    transform: rotate(90deg);
    width: auto; height: 40px;
    margin: 4px 0;
  }
  .hiw-step { max-width: 100%; width: 100%; }
}

/* ═══════════════════════════════════════
   FEATURES — GREEN GRADIENT
═══════════════════════════════════════ */
.ftw-features-green {
  padding: 90px 0 80px;
  background: #F4F5F7;
  position: relative;
  overflow: hidden;
}
.ftw-feat-glow {
  display: none;
}
.ftw-feat-glow-1 {
  display: none;
}
.ftw-feat-glow-2 {
  display: none;
}
.ftw-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .ftw-feat-grid { grid-template-columns: 1fr; }
}
.ftw-feat-card {
  background: #F4F5F7;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.11);
}
.ftw-feat-card:hover {
  background: #F4F5F7;
 
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.ftw-feat-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.12);
}
.ftw-feat-icon {
  width: 54px; height: 54px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.ftw-feat-card:hover .ftw-feat-icon { background: rgba(39,174,96,0.16); }
.ftw-feat-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.ftw-feat-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ftw-feat-body p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7; font-weight: 400;
}

/* ═══════════════════════════════════════
   CONTACT — REDESIGN
═══════════════════════════════════════ */
.ctc2-section {
  padding: 100px 0 120px;
  background: #0f1115;
  position: relative;
  overflow: hidden;
}
/* Subtle noise texture overlay */
.ctc2-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.5;
}
.ctc2-section .container-new { position: relative; z-index: 1; }

/* Top area */
.ctc2-top {
  text-align: center;
  margin-bottom: 48px;
}
.ctc2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #27ae60;
  
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.ctc2-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 6px #27ae60;
  animation: ctc2-pulse 2s ease-in-out infinite;
}
@keyframes ctc2-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.75); }
}
.ctc2-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  color: #000;
  margin-bottom: 18px;
}
.ctc2-headline em { color: #27ae60; font-style: normal; }
.ctc2-sub {
  font-size: 15px; color: rgba(0,0,0,0.60);
  font-weight: 300; line-height: 1.65;
  max-width: 460px; margin-inline: auto;
margin-bottom:20px;
}


/* Channel pills row */
.ctc2-channels {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.ctc2-pill {
  display: flex; align-items: center; gap: 14px;
  border-radius: 14px; padding: 14px 22px;
  font-size: 13px; color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  flex: 1; max-width: 260px;
}
.ctc2-pill i { font-size: 20px; flex-shrink: 0; }
.ctc2-pill strong { display: block; font-weight: 700; font-family: 'Syne', sans-serif; font-size: 12px; margin-bottom: 2px; }
.ctc2-pill span { font-size: 11.5px; color: rgba(255,255,255,0.45); font-weight: 300; }

.ctc2-pill-wa { border-color: rgba(37,211,102,0.25); }
.ctc2-pill-wa i { color: #25d366; }
.ctc2-pill-wa:hover { background: rgba(37,211,102,0.10); border-color: rgba(37,211,102,0.45); transform: translateY(-2px); }

.ctc2-pill-em { border-color: rgba(39,174,96,0.25); }
.ctc2-pill-em i { color: #27ae60; }
.ctc2-pill-em:hover { background: rgba(39,174,96,0.10); border-color: rgba(39,174,96,0.45); transform: translateY(-2px); }

.ctc2-response-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ctc2-response-note i { color: rgba(255,255,255,0.25); font-size: 11px; }

/* Form card */
.ctc2-card {
  max-width: 780px; margin-inline: auto;
  background: #161a1f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 48px 44px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
@media (max-width: 600px) { .ctc2-card { padding: 32px 24px; } }

.ctc2-form { display: flex; flex-direction: column; gap: 22px; }
.ctc2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .ctc2-row { grid-template-columns: 1fr; } }

.ctc2-field { display: flex; flex-direction: column; gap: 8px; }
.ctc2-field label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ctc2-field input,
.ctc2-field select,
.ctc2-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: #fff;
  outline: none; width: 100%;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
}
.ctc2-field input::placeholder,
.ctc2-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.ctc2-field select option { background: #1c2026; color: #fff; }
.ctc2-field input:focus,
.ctc2-field select:focus,
.ctc2-field textarea:focus {
  border-color: #27ae60;
  background: rgba(39,174,96,0.06);
  box-shadow: 0 0 0 3px rgba(39,174,96,0.12);
}
.ctc2-field textarea { min-height: 120px; resize: vertical; }

.ctc2-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 4px;
}
.ctc2-privacy {
  font-size: 11.5px; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 6px;
}
.ctc2-privacy i { color: rgba(39,174,96,0.55); font-size: 11px; }

.ctc2-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #27ae60; color: #fff;
  border: none; cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 15px 32px; border-radius: 12px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ctc2-btn svg { width: 15px; height: 15px; stroke: #fff; }
.ctc2-btn:hover {
  background: #1e8449;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(39,174,96,0.35);
}

#ctc-thankyou {
  display: none;
  text-align: center; padding: 20px;
  background: rgba(39,174,96,0.10);
  color: #27ae60;
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 12px; margin-top: 16px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
}

/* ========================================
   FORTWAY — Navbar · Refined Mobile Menu
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&display=swap');

:root {
  --nav-bg:    #1a2332;
  --nav-h:     64px;
  --accent:    #27ae60;
  --text:      #ffffff;
  --muted:     rgba(255, 255, 255, 0.55);
  --border:    rgba(255, 255, 255, 0.08);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════
   HEADER
   ════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 1000;
  font-family: 'Syne', sans-serif;
}

/* 1. Kill any hidden pseudo-element lines (borders made via code) */
.brand-link::before, .brand-link::after,
.nav-brand::before, .nav-brand::after,
.logo-container::before, .logo-container::after {
    display: none !important;
    content: none !important;
    border: none !important;
    width: 0 !important;
}

/* 2. Strip borders from all elements in the logo zone */
.brand-link, .nav-brand, .logo-container, .logo, .slogan, .brand-icon {
    border: none !important;
    border-right: none !important;
    border-left: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 3. Stop the SVG layout from stretching vertically */
.nav-brand {
    align-items: center !important;
}
.brand-icon {
    align-self: center !important;
}


/* ════════════════════════════════
   BRAND
   ════════════════════════════════ */
.hero-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0; /* Adjust spacing as needed */
}

.hero-icon svg {
  width: 64px;
  height: 64px;
  animation: float 3s ease-in-out infinite; /* Optional subtle animation */
}



.brand-link        { text-decoration: none; color: inherit; }
.nav-brand         { display: flex; align-items: center; gap: 11px; }
.brand-icon        { width: 34px; height: 34px; flex-shrink: 0; }
.logo-container    { display: flex; flex-direction: column; line-height: 1; }
.logo              { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: 0.09em; }
.log               { color: var(--accent); }
.slogan            { font-size: 7px; font-weight: 600; letter-spacing: 0.24em; color: var(--muted); margin-top: 3px; }

/* ════════════════════════════════
   DESKTOP NAV LINKS
   ════════════════════════════════ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a:not(.nav-btn):not(.social-btn) {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:not(.nav-btn):not(.social-btn):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-btn {
  font-family: 'Syne', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color:#2ecc71 !important;
  text-decoration: none;
  padding: 13px 18px;
  background: var(--accent);
  border-radius: 5px;
  margin-left: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav-btn:hover {
  background: #2ecc71;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.35);
}

.social-container { display: none; }

/* ════════════════════════════════
   HAMBURGER — bare lines only
   ════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════
   MOBILE  ≤ 768px
   ════════════════════════════════════════════ */
@media (max-width: 768px) {

  header { padding: 0 20px; }
  .hamburger { display: flex; }

  /* ── Overlay: dims & disables the page ── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.70);
    
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    pointer-events: none;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  /* ── Panel: glass, rounded, slides from top ── */
 .nav-links {
  position: fixed; /* already have this */
  relative; /* no change needed, fixed works */
}

#cw-dot {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

#cw-dot.appear {
  transform: scale(1);
  opacity: 1;
}


.cw-agent-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.nav-label {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
@media (min-width: 768px) {
  .nav-label {
    display: none;
  }
}
  .nav-links {
  position: fixed;
  top: calc(var(--nav-h) + 8px);
  left: 12px;
  right: 12px;
  width: auto;
  background: rgba(10, 16, 28, 1.0);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 6px;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
              0 4px 12px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* closed */
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease),
              opacity 0.25s ease,
              visibility 0s linear 0.3s;
}

/* open */
.nav-links.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s var(--ease),
              opacity 0.25s ease,
              visibility 0s linear 0s;
}

/* links */
.nav-links a:not(.nav-btn):not(.social-btn) {
  font-family: 'Syne', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  letter-spacing: 0.03em;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:not(.nav-btn):not(.social-btn):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* arrow on hover instead of dot */
.nav-links a:not(.nav-btn):not(.social-btn)::after {
  content: '↗';
  font-size: 11px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  color: var(--accent);
}

.nav-links a:not(.nav-btn):not(.social-btn):hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
  /* ── Footer row: socials left, CTA right ── */
  .nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 0;
  }

  .social-container {
    display: flex !important;
    gap: 8px;
  }
  .social-btn {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border: 1px solid var(--border);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--muted) !important;
    font-size: 12px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .social-btn:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
    background: rgba(39, 174, 96, 0.1);
  }

  /* ── Contact button — right side, wider ── */
  .nav-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 10px 28px !important;   /* wider */
    border-radius: 8px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
}


  /* 1. Default State: Text and Logo are White */
header .logo,
header .nav-links a,
header .slogan,
header .{
    color: #ffffff;
    transition: color 0.3s ease;
}

/* 2. Default State: SVG Icon lines are White, divider light */
header .brand-icon line {
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}
header .nav-brand::after { background: #ffffff; }

/* 3. Scrolled State: Text and Logo switch to Dark */
header.scrolled .logo,
header.scrolled .nav-links a,
header.scrolled .slogan,
header.scrolled .{
    color: #fff;
}

/* 4. Scrolled State: SVG Icon lines switch to Dark */
header.scrolled .brand-icon line {
    stroke: #0f1115;
}
header.scrolled .nav-brand::after { background: #0f1115; }
#nav-menu a {
    color: #ffffff !important;
 } 
  
  @keyframes gentle-slide {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
  }


.refined-scroll-explore {
    margin-top: 50px; /* Give space from the buttons */
    display: flex;
    flex-direction:flex-start;
    align-items: center;
    gap: 12px;
    
    /* Make the text tiny, spaced out, and green, like your reference image */
    color: grey; 
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

 .refined-scroll-explore span {
    display: block;
    margin-bottom: -4px; /* Tighten up spacing to the arrows */
  }

  /* Here is the magic fix for the "big ass arrows": */
  .refined-scroll-explore svg {
    display: block;
    /* We are making the container small (12px), NOT 100% or huge */
    width: 12px; 
    height: 12px;
    
    /* Inherit the green color we set above */
    stroke: currentColor;
    
    /* Make the lines thin like the reference, not bold */
    stroke-width: 1.5px;
    
    /* Slower, smoother animation for a 'premium' feel */
    animation: gentle-slide 1.8s ease-in-out infinite;
  }

.hero__grain {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }




.maintenance-link {
  text-align: center;
  margin-top: 40px;
}

.maintenance-link p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.maintenance-btn {
  font-size: 0.95rem;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
border:1px solid #27ae60;
border-radius:8px;
padding:8px;
}

/* underline animation */
.maintenance-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #25D366; /* WhatsApp green */
  transition: width 0.3s ease;
}

.maintenance-btn:hover {
  opacity: 1;
}

.maintenance-btn:hover::after {
  width: 100%;
}


.whatsapp-float,
.call-float {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.whatsapp-float.show,
.call-float.show {
    opacity: 1;
    transform: translateY(0);
}



.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.call-float svg {
  width: 22px;
  height: 22px;
  fill: #111;
}


/* Modern Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #f8fafc;
            background-image: radial-gradient(#e2e8f0 0.5px, transparent 0.5px);
            background-size: 24px 24px;
            color: #1e293b;
            line-height: 1.5;
        }

        /* Layout */
        .ftw-core-viewport {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .ftw-core-surface {
            max-width: 600px;
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        }

        /* Components */
        .ftw-core-indicator {
            display: inline-block;
            background: #eff6ff;
            color: #27ae60;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 12px;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }

        .ftw-core-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        .ftw-core-lead {
            color: #64748b;
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        .ftw-core-cta {
            display: inline-block;
            background-color: #186a3b;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ftw-core-cta:hover {
            background-color: #334155;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .ftw-core-cta:active {
            transform: translateY(0);
        }

        /* Mobile Adjustments */
        @media (max-width: 480px) {
            .ftw-core-surface {
                padding: 2rem 1.5rem;
            }
            .ftw-core-title {
                font-size: 2rem;
            }
        }

  
  
   .ftw-faq-contact-btn {
    display: block;
    margin: 40px auto 0 auto;
    text-decoration: none;
    color: #fff;
    background: #186a3b;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border: none;
}

.ftw-faq-contact-btn:hover {
    background:#2ecc71;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
   
   


/* Premium minimalist styling to match your aesthetic */
.version-tag {
    display: block;
    font-family: sans-serif; /* Use your brand font here */
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color:#f9f9f9;
    opacity: 0.3; /* Keeps it subtle and non-distracting */
    margin-top: 20px;
    text-align: center;
}

.brand-icon {
    width: 46px !important;  /* Change this to make the logo larger or smaller */
    height: 46px !important; /* Keep these equal to maintain the 1:1 aspect ratio */
margin-left:-15px;
}


#error-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#error-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

#error-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

#error-card button {
  background: #151C2C;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}



/* Targets the SVG to make it stay proportional */
.ftw-trial-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 3; /* Thicker lines look better at smaller sizes */
}


:root {
  --card-bg: #ffffff;
  --accent-blue: #A5A9B4;
  --text-main: #0f172a;
  --text-dim: #64748b;
  --border-light: #f1f5f9;
}

/* ═══════════════════════════════════════
   PRICING — REDESIGN
═══════════════════════════════════════ */
.prc-section {
  padding: 90px 0 100px;
  background: #0f1115;
  position: relative;
  overflow: hidden;
}
.prc-bg-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(100px); opacity: 0.18;
}
.prc-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #27ae60 0%, transparent 70%);
  top: -200px; left: -150px;
}
.prc-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #186a3b 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.prc-title { color: #fff !important; }
.prc-title span { color: rgba(255,255,255,0.35) !important; }
.prc-label {
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* Grid */
.prc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
@media (max-width: 860px) {
  .prc-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

/* Base card */
.prc-card {
  background: #161a1f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

/* Featured (Silver) card — lifted & glowing */
.prc-featured {
  background: #F3F4F6;
  border: 2px solid #27ae60;
  border-radius: 24px;
  padding: 44px 30px 38px;
  
  transform: translateY(-7px);
  z-index: 2;
}

.prc-deposit-inline-dark {
  color: rgba(255, 255, 255, 0.65);
}
.prc-deposit-inline {
  font-size: 11px;
  line-height: 1.3;
  margin-top: 6px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.2px;
  font-style: italic;
}

.prc-note-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #777;
  margin-top: 6px;
}

.prc-info-icon {
  flex-shrink: 0;
  opacity: 0.7;
}
.prc-featured:hover {
  transform: translateY(-18px);
  
}

/* Recommended badge */
.prc-recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 20px 0 20px; /* top-right matches card, opposite corner curves inward */
  background: #27ae60;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 10px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.10);
}
.prc-recommended-badge svg { width: 12px; height: 12px; }

/* Card top */
.prc-card-top { margin-bottom: 28px; }
.prc-tier {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.prc-card-top2 { margin-bottom: 28px; }
.prc-tier2 {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(168,85,247,0.9);
  margin-bottom: 14px;
}
.prc-featured .prc-tier { color: #27ae60; }

.prc-price-row {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 6px;
}
.prc-currency {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.prc-featured .prc-currency { color: #27ae60; }
.prc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: #fff;
}
.prc-featured .prc-amount { color: #0f1115; }
.prc-period {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  align-self: flex-end; padding-bottom: 8px;
}
.prc-featured .prc-period { color: #888; }
.prc-custom-price { align-items: center; }
.prc-amount-custom {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
}
.prc-tagline {
  font-size: 12px; color:#f9f9f9;
  font-weight: 300; margin-top: 4px;
}
.prc-featured .prc-tagline { color: font-size: 12px; color: #0f1115 }

.prc-card-top {
  display: flex;
  flex-direction: column;
  gap: 2px; /* keep it small */
}

.prc-tier {
  margin: 0;
}
.prc-tier2 {
  margin: 0;
}

.prc-ai-tag {
  margin-bottom: 15px;
  font-size: 12px;
  color: #777;
  line-height: 1.2;
}
/* Divider */
.prc-card-top { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 24px; }
.prc-featured .prc-card-top { border-bottom-color: rgba(0,0,0,0.08); }

/* Feature list */
.prc-list { list-style: none; padding: 0; margin: 24px 0 32px; flex: 1; display: flex; flex-direction: column; gap: 13px; }

/* Gold card description (replaces list, same flex behaviour) */
.prc-desc {
  flex: 1;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.prc-desc p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

.prc-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; line-height: 1.4;
}
.prc-on { color: rgba(255,255,255,0.82); }
.prc-featured .prc-on { color: #1a1a1a; }
.prc-off { color: rgba(255,255,255,0.22); }

/* Check icon */
.prc-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.prc-check2 {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(120,81,169,0.15);
  border: 1px solid rgba(120,81,169,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.prc-featured .prc-check {
  background: rgba(39,174,96,0.12);
  border-color: rgba(39,174,96,0.4);
}

.prc-check svg {
  width: 10px; height: 10px;
  stroke: #27ae60; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.prc-check2 svg {
  width: 10px; height: 10px;
  stroke: #A855F7; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Lock icon */
.prc-lock {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.prc-lock svg {
  width: 10px; height: 10px;
  stroke: rgba(255,255,255,0.22); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* Buttons */
.prc-btn {
  display: block; text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: 12px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.prc-btn2 {
  display: block; text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: 12px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.prc-btn-ghost2 {
  background: linear-gradient(
  135deg, 
  rgba(168, 85, 247, 0.26) 0%, 
  rgba(168, 85, 247, 0) 100%
);

  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}
.prc-btn-ghost2:hover {
  background: rgba(255,255,255,0.11);
  color: #fff;
  transform: translateY(-2px);
}
.prc-btn-ghost {
  background: rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}
.prc-btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  color: #fff;
  transform: translateY(-2px);
}

.prc-btn-solid {
  background: linear-gradient(
  135deg, 
  #27ae60 0%, 
  #2ecc71 100%
);
/* Box shadow to make it pop softly off the white card */
box-shadow: 0 4px 14px 0 rgba(39, 174, 96, 0.2); 
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}
.prc-btn-solid:hover {
  background: #1e8449;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(39,174,96,0.5);
}
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* Container for the cards (suggested layout) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
    background-color: #F4F5F7; /* Light background for the page */
}

/* The Card Structure - Similar to the Dog Directory */
.ftw-cardx {
    background: #ffffff;
    border-radius: 8px; /* Rounded corners from your previous design */
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft elevation */
}

/* Hover Effect: Lifting the card and intensifying the shadow */
.ftw-cardx:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #d1d1d1;
}

/* Image Wrapper: Maintaining the "window" zoom effect */
.project-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
border-radius:8px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ftw-cardx:hover .project-img-wrapper img {
    transform: scale(1.08); /* Subtle zoom on hover */
}

/* Content Body: Spacing matches your luxury directory */
.project-body {
    padding: 25px;
}

.ftw-h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 700;
margin-top:25px;
}

.project-body p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
    /* This is the property you need */
    text-align: left !important; 
}
.ftw-card .ftw-h3, 
.ftw-card p {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
}

.ftwx-card .ftwx-h3, 
.ftwx-card p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
}

.ftww-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent; /* Dark button for contrast */
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
margin-top: 20px;
border:2px solid #27ae60;
}

.ftw-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #186a3b; /* Dark button for contrast */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
margin-top: 20px;
}

.ftw-btn:hover {
    background-color: #c7a17a; /* Using your Gold/Champagne accent from before */
}
.ftw-projects-wrapper {
  display: flex;           /* horizontal layout */
  flex-wrap: wrap;         /* wrap to next line on smaller screens */
  justify-content: center; /* center all cards */
  gap: 20px;               /* space between cards */
  padding: 40px 20px;      /* optional padding around wrapper */
}


.project-img {
  /* 1. This pulls the container into the padding area */
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;

  /* 2. CRITICAL: This makes the container wide enough to reach both edges */
  /* (Parent width + 20px left + 20px right) */
  width: calc(100% + 40px); 

  height: 180px;
  overflow: hidden;
  
  /* Matches the top corners of your card */
  border-radius: 8px; 
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Remove all margins from here! */
}


.accent-title{
    color:#27ae60;
}

.gearshift-monitor-icon {
  width: 150px;
  height: 150px;
  color: #333;
  display: block;
  margin: auto;
  transition: all 0.3s ease;
}

.m-frame {
  fill: #fff;
}

.gearshift-group {
  color: #333;
}

.gs-knob, .gs-pattern, .gs-shaft, .gs-boot {
  transition: all 0.2s ease;
}

.gearshift-monitor-icon:hover {
  color: #000;
}

.gearshift-monitor-icon:hover .m-frame {
  stroke: #222;
}

/* Interaction on hover: highlight the gearshift and knob */
.gearshift-monitor-icon:hover .gs-knob {
  stroke: #c0392b; /* Red accent on knob */
  stroke-width: 4;
}

.gearshift-monitor-icon:hover .gs-pattern {
  stroke: #c0392b; /* Match pattern color */
}

.gearshift-monitor-icon:hover .gs-shaft {
  fill: #e74c3c; /* Red color for the shaft */
}

.gearshift-monitor-icon:hover .gs-boot {
  stroke: #c0392b; /* Match base boot color */
}



.wh-server-rack-icon {
  width: 100px;
  height: 100px;
  color: #333;
  display: block;
  margin: auto;
}

.wh-server-frame {
  fill: #fff;
}

.wh-server-activity {
  opacity: 0.4;
}

.wh-server-rack-icon:hover {
  color: #000;
}

.wh-server-rack-icon:hover .wh-server-point {
  fill: #34a853; 
  filter: drop-shadow(0 0 1px #34a853);
}

.wh-server-rack-icon:hover .wh-server-activity {
  opacity: 1;
  stroke: #4285f4;
  transition: all 0.2s ease;
}




.modern-workstation-icon {
  width: 100px;
  height: 100px;
  color: #2c3e50;
  display: block;
  margin: auto;
}

.mw-screen {
  fill: #ffffff;
}

.mw-line {
  opacity: 0.4;
}

.modern-workstation-icon:hover {
  color: #000;
}

.modern-workstation-icon:hover .mw-power {
  fill: #00ff00;
  filter: drop-shadow(0 0 2px #00ff00);
}

.modern-workstation-icon:hover .mw-element {
  stroke: #3498db;
  transition: stroke 0.2s ease;
}




.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Start off-screen */
.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

/* Slide into place */
.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}
      .fw-sub-headline {
    font-size: 1.1rem; /* Slightly larger for the section header */
    color: #334155;
    margin: 20px auto 40px auto; /* Centers it and adds breathing room */
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px; /* Prevents it from stretching to the edges */
    text-align: center; /* Ensures it aligns with the title above */
    padding: 0 20px; /* Keeps it from touching phone edges on small screens */
}

      
 
    
        
        }

        .fw-trust-note {
            display: block;
            text-align: center;
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 12px;
        }



.feature-header {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  margin-bottom: 40px; /* Tighter than other sections to keep it connected to the cards */
}

.feature-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5em; 
  color: #27ae60;
  margin-bottom: 16px;
  font-weight: 700;
  margin-left: 0.5em; /* Optical Center Fix */
}


 .spanx {
  color: #27ae60;
  display: block; /* Forces the green text to the second line for impact */
}



.work-header {
  margin-bottom: 50px;
  text-align: center;
}

.title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  color: black;
  letter-spacing: -0.05em;

  margin: 0 !important;       /* force remove */
  padding: 0 !important;      /* just in case */
  line-height: 2;             /* 🔥 important fix */
}

.work-label {
  display: block;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #27ae60;
  font-weight: 700;

  margin: 0 !important;       /* force remove */
  padding: 0 !important;
}


.title span {
  color: #27ae60;
}

/* 1. Kill the gap on the Header Section */
.Green-text {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

@media (max-width: 768px) {
    .card-gridx {
        grid-template-columns: 1fr; /* stack on mobile */
    }
}

.card-gridx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center; /* THIS is key */
    gap: 25px;
}
/* 2. Pull the Cards up */
.feature-card.cardx:first-of-type {
  margin-top: 0px !important;
}

/* 3. If they are in a container, strip its top padding */
.cards-container {
  padding-top: 0px !important;
  margin-top: -10px !important; /* Negative margin to bridge the gap */
}

/* THE CARD CONTAINER */
.featurex-card.cardx {
  background: rgba(255, 255, 255, 0.03); /* Barely-there glass tint */
  backdrop-filter: blur(10px); /* The Apple Glass effect */
  border-radius: 32px; /* Heavy radius to match your style */
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle "rim" light */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Silk-smooth motion */
  position: relative;
  overflow: hidden;
}

/* THE HOVER STATE (Locked In) */
.featurex-card.cardx:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(39, 174, 96, 0.4); /* Green tint on border */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* THE ICON CIRCLE */
.featurex-icon {
  width: 56px;
  height: 56px;
  background: rgba(39, 174, 96, 0.1); /* Soft green glow base */
  border-radius: 16px; /* Slightly less rounded than the card for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: #2ecc71; /* The vibrant mint green */
  transition: transform 0.3s ease;
}

.featurex-card.cardx:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(39, 174, 96, 0.2);
}

.featurex-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.5));
}

.feature-content h3 {
  margin: 0 0 18px 0; /* Tight bottom margin */
  line-height: 1.2;
  /* ... existing styles ... */
}

.feature-content p {
  margin: 0; /* Remove top margin to control purely from the H3 */
  line-height: 1.6;
  /* ... existing styles ... */
}



.badge {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  opacity: 0;
  transform: translateY(5px);
  animation: appleFadeIn 0.4s ease forwards;
}

@keyframes appleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










@media (max-width: 768px) {
    .final-cta h2 { font-size: 2rem; }
    .final-cta { padding: 60px 20px; margin: 40px 15px; }
}


/* ==========================================================================
  reveal 
   ========================================================================== */


/* ==========================================================================
  quotation section 
   ========================================================================== */


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    background-color: var(--bg);
    max-width: 800px;
    margin: 0 auto;
}
.Green-text {
  text-align: center;
  /* Background removed; relies on the background of the parent container */
  padding: 120px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
}

/* THE POWER HEADLINE */
.faq-title {
  color: black; /* Optimized for a dark theme */
  font-size: clamp(2.5rem, 12vw, 6rem); /* Cinematic scale */
  font-weight: 800;
  line-height: 0.85; /* Extremely tight for that premium "compact" look */
  letter-spacing: -0.06em; /* Maximum "Apple Pro" compression */
  margin-bottom: 30px;
  margin-top: 0;
}
.faq-title span {
  display: block; /* Puts it on its own line for dramatic effect */
  color: #27ae60;
  /* Deep, metallic gradient */
  background: linear-gradient(180deg, #2ecc71 20%, #1e8449 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* The "Sophisticated" Glow */
  filter: drop-shadow(0 0 30px rgba(39, 174, 96, 0.25));
}


/* THE SERVICES PILLS */
.faq-services {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-services span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #86868b;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  /* The "Squircle" Look */
  border-radius: 18px; 
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}



.faq-services {
  margin-top: 25px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Turning each service into a "Pill" to match your radius */
.faq-services span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #27ae60;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 50px; /* The "Infinite" radius */
  letter-spacing: 0.02em;
}

/* THE TECHNICAL SUB-TITLE */
.faq-services {
  color: #86868b; /* Apple's signature muted grey */
  font-size: 14px; /* Small and precise */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em; /* Extreme letter spacing = luxury */
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* Replacing the slash with a custom dot for elegance */
.faq-services::after {
  content: ""; /* Clean footer-style line below if needed */
}


.faq-services {
  color: #86868b; /* Apple's specific "Secondary" gray */
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em; /* Breathing room for sophistication */
  margin: 0;
  opacity: 0.8;
}

.svg-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.svg-footer svg {
    width: 60px;
    height: 60px;
}

.footer-brand .cta-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

/* ==========================================================================
   FAQ ITEM & ACCORDION
   ========================================================================== */
.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.4rem;
    color: #186a3b;
    transition: transform 0.3s ease;
    font-weight: 400;
}

/* ==========================================================================
   FAQ ANSWER (HIDDEN BY DEFAULT)
   ========================================================================== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(0, 0, 0, 0.01);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

.pricing-inline-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

/* ==========================================================================
   ACTIVE STATE (FOR JS)
   ========================================================================== */
.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content length */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns + into x */
    color: var(--text-soft);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

/* ==========================================================================
   MOBILE ADJUSTMENTS
   ========================================================================== */
 
 @media (min-width: 1024px) {
    .hero-text {
        width: 100vw; /* Take up the full viewport width */
      max-width: none !important; /* Allow it to spread out */
        margin: 0 auto;
        text-align: center;
    }

    h1 {
        /* This prevents the text from wrapping even if the container is small */
        white-space: normal; 
        font-size: 4.5rem; /* Bold, premium size */
        line-height: 1.1;
        display: block;
    }

    /* Force "Get a WhatsApp-Driven" to stay on one line */
    h1 span.line-one {
        display: block;
        white-space: nowrap; 
    }

    /* Force "That Gets You More Sales" to stay on one line */
    h1 span.line-two {
        display: block;
        white-space: nowrap;
    }
}


/* ==========================================================================
   CONTACT BUTTON (DESKTOP ONLY)
   ========================================================================== */

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}



@media (min-width: 1024px) {
  .nav-links {
    display: grid;
    /* Three columns: Left(1fr), Center(auto), Right(1fr) */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
  }

  .nav-links {
    display: flex; /* Horizontal row */
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-btn {
    justify-self: end !important; /* Push to far right of the last column */
  }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end; /* Aligns links to the right */
    padding: 20px 5%;
}

.nav-links a {
    text-decoration: none;
    color: #0f1115;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

/* Specific Contact Button for Desktop */
.nav-btn {
    background: #186a3b !important;
    color: #fff !important;
    padding: 8px 25px !important; 
    
    border-radius: 50px;
}



   /* ── Hamburger ── */

  color: #666;
  border: 1px solid #222;
}
.social-btn:hover { transform: translateY(-2px); color: #f0ece4; border-color: #333; }

/* ── Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  z-index: 999;
}
.nav-overlay.open { display: block; }

/* ── Show hamburger on mobile ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

}

/* ==========================================================================
   CENTERED BRANDING & DIVIDER
   ========================================================================== */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    width: 40px; /* Small, minimalist center accent */
    margin: 20px auto;
}

@media (max-width: 768px) {
    /* Position the logo at the top center of the menu overlay */
    .nav-links .nav-logo {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
    }
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand svg.brand-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  filter: none;
}

/* Thin vertical divider between icon and wordmark */
.nav-brand::after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
  opacity: 0.12;
  flex-shrink: 0;
}

/* Container to keep them together */
.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 1px;
margin-left:-13px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff !important;
  display: flex;
  align-items: left;
  line-height: 1;
}

.log {
  color: #27ae60;
  margin: 0 0.5px;
}

.slogan {
  font-family: 'DM Sans', sans-serif;
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff !important;
  font-weight: 500;
  line-height: 1;
}

/* ==========================================================================
   LOGO / SVG STYLING
   ========================================================================== */
svg {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}



/* Targeting specific logo elements if you want to animate them */
svg line {
    transition: stroke-dashoffset 0.5s ease;
}

svg circle {
    transition: var(--transition);
}

svg:hover circle {
    fill: #ffffff; /* Swaps the dot color on hover */
}





/* ==========================================================================
   PROJECT FORM SECTION
   ========================================================================== */
#project-section {
    padding: 80px 20px;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
}

.service-form {
    background-color: var(--card-bg);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}



.form-subtitle {
    text-align: center;
    color: var(--text-soft);
    margin-bottom: 40px;
    font-size: 1rem;
}

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */
#project-form {
    display: flex;
    flex-direction: column;
}

#project-form label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    display: block;
}

#project-form input,
#project-form select,
#project-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--bg);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

/* Custom dropdown arrow for selects */
#project-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

#project-form input:focus,
#project-form select:focus,
#project-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(127, 255, 212, 0.15);
}

#project-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   SUBMIT BUTTON
   ========================================================================== */
#project-form button[type="submit"] {
    background-color: var(--text);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

#project-form button[type="submit"]:hover {
    background-color: var(--accent);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(127, 255, 212, 0.3);
}

/* ==========================================================================
   THANK YOU STATE
   ========================================================================== */
#thank-you {
    background: var(--text); /* Dark background for the success state */
    padding: 40px;
    border-radius: 20px;
}

#thank-you h2 {
    color: var(--accent);
    margin-bottom: 15px;
}

#thank-you p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 480px) {
    .service-form {
        padding: 30px 20px;
    }
}


/* ==========================================================================
   PRICING & HOSTING SECTION
   ========================================================================== */

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}


.footer-inner {
  max-width:1280px; margin:0 auto; padding:0 20px;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px;
}
@media(max-width:800px){ .footer-inner { grid-template-columns:1fr 1fr; } }
@media(max-width:460px){ .footer-inner { grid-template-columns:1fr; } }
.footer-logo { font-family:'Syne',sans-serif; font-weight:800; font-size:22px; color:var(--green); margin-bottom:12px; align-text:center !important;}
.footer-desc { font-size:14px; line-height:1.7; margin-bottom:20px; }
.footer-socials { display:flex; gap:12px; }
.footer-social { color:rgba(255,255,255,.45); cursor:pointer; transition:color .2s; }
.footer-social:hover { color:var(--green); }
.footer-col-title { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:#fff; margin-bottom:14px; text-transform:uppercase; letter-spacing:.5px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links li a { color:rgba(255,255,255,.55); font-size:14px; cursor:pointer; transition:color .2s; }
.footer-links li a:hover { color:var(--green); }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:14px; margin-bottom:12px; }
.footer-contact-icon { color:var(--green); flex-shrink:0; margin-top:1px; }
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(37, 211, 102, 0.35);
  margin-top: 10px;
  transition: all 0.2s;
}
.footer-wa-link svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.footer-wa-link:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.6);
}
.footer-wa-link:hover { background:#1aad54; }
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  letter-spacing: 0.03em;
}
.footer-social svg, 
.footer-contact-icon svg, 
.footer-wa-link svg {
  display: block; /* Removes weird bottom spacing */
  width: 1em;     /* Or a specific px value like 20px */
  height: 1em;
  flex-shrink: 0; /* Prevents icons from squishing in flex layouts */
}



 
/* ===========================================================
   HERO SECTION
   =========================================================== */
/* Prevent horizontal scrolling */
body, html {
    overflow-x: hidden;
}
html, body {
  height: 100%;
  background-color: #f4f4f4; /* Or whatever matches your design */
}

.h1 span {
    color:#27ae60;
}



.fws-av {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111828;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.fws-av canvas {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-contact-sub {
  font-size: 0.75em;
  opacity: 0.6;
text-align:right;
}

#hero {
  margin-top:64px;
  background:linear-gradient(135deg,#111828 0%,#1a2332 55%,#0e2318 100%);
  min-height:520px; display:flex; align-items:center;
  justify-content: center; /* ← Added to center horizontally */
  position:relative; overflow:hidden;
  min-height: 100vh;
  margin-top:0;
}
.hero-circle {
  position:absolute; border-radius:50%; pointer-events:none;
}
.hc1 {
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(39,174,96,.18) 0%,transparent 70%);
  top:-100px; right:-80px;
}
.hc2 {
  width:320px; height:320px;
  background:radial-gradient(circle,rgba(39,174,96,.1) 0%,transparent 70%);
  bottom:-60px; left:80px;
}
.hero-inner {
  max-width:1280px; margin:0 auto; padding:80px 20px;
  display:flex; align-items:center; gap:60px; width:100%; position:relative; z-index:1;
  flex-direction: column;   /* ← Added to stack content vertically */
  justify-content: center; /* ← Added to center vertically */
  text-align: center;      /* ← Added to center all text elements */
}
.hero-text { flex:1; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(39,174,96,.14); border:1px solid rgba(39,174,96,.3);
  color:#5dde8a; font-size:10px; font-weight:600; letter-spacing:1px;
  text-transform:uppercase; padding:5px 12px; border-radius:100px; margin-bottom:20px;
}
.hero-h1 {
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,5vw,62px); font-weight:800;
  color:#fff; line-height:1.1; letter-spacing:-1px; margin-bottom:18px;
}
.hero-h1 em { font-style:normal; color:var(--green); }
.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 34px auto;  /* Shorthand for centering */
  text-align: center !important;  /* Force it */
}
.hero-btns { 
  display:flex; gap:12px; flex-wrap:wrap; 
  justify-content: center; /* ← Added to center buttons row */
}
.btn-primary-hero, 
.btn-secondary-hero {
  box-sizing: border-box !important;
  display: inline-flex !important; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
  font-size: 15px; 
  font-weight: 600; 
  height: 50px; 
  min-width: 250px; 
  text-decoration: none;
  text-align: center;
}
.footer-text-hero {
  color: #a0a0b0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-top: 25px;
}
.hero-sub {
  
  max-width: 300px;
  
}
.btn-primary-hero {
  background: linear-gradient(to right, var(--green), #186a3b); 
  border: 1px solid transparent; 
  border-radius: var(--r-md); 
  transition: all .2s;
  color: #fff;
  position: relative; 
  overflow: hidden;   
}

.btn-secondary-hero {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px; 
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  animation: slide-left-right 3.5s linear infinite;
}

@keyframes slide-left-right {
  to { left: 140%; }
}
.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

.main-heart {
  /* Control the size here */
  width: 18px;
  height: auto; /* Keeps the proportions perfect */
  
  /* You can also use rem for better accessibility */
  /* width: 2.5rem; */
}


.icon-send {
  width: 15px;  /* Set your desired width */
  height: auto; /* Maintains aspect ratio */
margin-left:10px;
}

.btn-primary-hero:hover { background:var(--green-dark); transform:translateY(-1px); box-shadow:0 8px 24px rgba(39,174,96,.35); }
.btn-outline {
  background:transparent; color:#fff;
  border:1px solid rgba(255,255,255,.25);
  font-size:15px; font-weight:600; padding:13px 28px;
  border-radius:var(--r-md); transition:all .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-outline:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.5); }
.hero-stats { display:flex; gap:32px; margin-top:48px; }
.stat-n { font-family:'Syne',sans-serif; font-size:28px; font-weight:800; color:#fff; }
.stat-l { font-size:13px; color:rgba(255,255,255,.5); margin-top:2px; }
.hero-img-wrap {
  flex:0 0 400px; height:350px; border-radius:var(--r-xl);
  overflow:hidden; box-shadow:0 24px 80px rgba(0,0,0,.4); position:relative;
}
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; }
.hero-img-badge {
  position:absolute; bottom:14px; left:14px;
  background:rgba(15,17,21,.8); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.1); color:#fff;
  padding:8px 14px; border-radius:var(--r-md); font-size:13px;
}
.hero-img-badge strong { color:var(--green); }
@media(max-width:900px){ .hero-img-wrap { display:none; } }
/* DELETE .hero-circle, .hc1, .hc2 — replaced by JS blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
/* ── RESET & VARS ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #27ae60;
  --green-dark:  #186a3b;
  --green-light: #eafaf1;
  --green-mid:   #c8f0d8;
  --bg:          #f5f6f8;
  --surface:     #ffffff;
  --text:        #0f1115;
  --text2:       #4a5568;
  --text3:       #9aa5b4;
  --border:      #e8eaed;
  --sh-sm: 0 1px 4px rgba(0,0,0,.06);
  --sh-md: 0 4px 16px rgba(0,0,0,.09);
  --sh-lg: 0 12px 40px rgba(0,0,0,.13);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px;
}
html { scroll-behavior: smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; }
button { font-family:'DM Sans',sans-serif; cursor:pointer; }
a { text-decoration:none; }
img { display:block; }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.hidden { display:none !important; }
.flex { display:flex; align-items:center; }



.cart-badge {
  position:absolute; top:2px; right:2px; background:var(--green); color:#fff;
  font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* 
===========================================================
   FEATURE CARDS
   =========================================================== */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 
                0 8px 10px -6px rgba(0, 0, 0, 0.05);

    /* 👇 ADD THIS */
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.3s ease, 
                box-shadow 0.2s ease,
                opacity 0.3s ease;
}

/* When visible */
.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}


.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.25s; }
.feature-card:nth-child(3) { transition-delay: 0.4s; }

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: #27ae60;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.card-content p {
    font-size: 0.95rem;
    margin: 4px 0 0 0;
}



/* ===========================================================
   ANIMATIONS
   =========================================================== */
.hero-icon,
.hero-h1,
.hero-sub,
.hero-btns,
.footer-text-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRollIn 1.1s ease forwards;
}

.hero-icon         { animation-delay: 0.2s; }
.hero-h1           { animation-delay: 0.4s; }
.hero-sub          { animation-delay: 0.65s; }
.hero-btns         { animation-delay: 0.85s; }
.footer-text-hero  { animation-delay: 1.05s; }

@keyframes heroRollIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================================================
   RESPONSIVENESS
   =========================================================== */
@media (min-width: 768px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   PROJECTS GALLERY LAYOUT
   ========================================================================== */
/* ==========================================================================
   PROJECTS GALLERY (Merged & Optimized)
   ========================================================================== */
.projects-gallery {
    padding: 80px 20px;
    background-color: var(--bg);
    text-align: center;
}

.projects-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-gallery .title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text);
}

.projects-gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   REFINED PROJECT CARDS
   ========================================================================== */
.projects-gallery .card {
    background-color: var(--card-bg);
    /* Removed top padding to allow image to hit the top edge */
    padding: 0 0 40px 0; 
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed to flex-start for better image flow */
    min-height: 450px; /* Increased height to accommodate the image */
    overflow: hidden; /* CRITICAL: keeps the image inside the rounded corners */
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* NEW: The Image Container */
.card-banner {
    width: 100%;
    height: 250px;
    background: transparent; /* Changed from #1a1a1a to transparent */
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    display: block;

    /* THIS IS THE FIX: It fades the image itself to 0% opacity at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}



/* Ensure the dots stay on top of the image but behind the gradient fade if needed */
.fw-browser-dots {
    z-index: 3; 
}


.projects-gallery .card:hover {
    transform: none;
    border-color: rgba(0, 0, 0, 0.05); /* Keeps your original border style */
    box-shadow: 0 0 25px rgba(39, 174, 96, 0.7);
    transition: none;
}

.projects-gallery .card {
    transition: none;
}

.fw-browser-frame {
  display: block;
  width: 100%;
  overflow: hidden;
  height: 250px; /* adjust based on your design */
  position: relative;
}

.fw-browser-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==========================================================================
   TEXT & CONTENT (Adjusted for padding)
   ========================================================================== */
.projects-gallery .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
    padding: 0 30px; /* Restoring horizontal padding */
}

.projects-gallery .card p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 280px;
    padding: 0 30px; /* Restoring horizontal padding */
    flex-grow: 1; /* Pushes the button to the bottom */
}

/* ==========================================================================
   PROJECT LINK
   ========================================================================== */
.projectx-link {
    display: inline-flex; /* Keeps button size to content + allows alignment */
    align-items: center;
    justify-content: center;
    gap: 8px;            /* Space between text and arrow */
    text-decoration: none;
    color: var(--text);
    background-color: var(--accent);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease; /* Smooths out color and transform */
    border: 2px solid var(--accent);
    margin-bottom: 5px;
}

.projectx-link:hover {
    background-color: transparent;
    color: var(--accent); /* Usually looks better to match border on hover */
    transform: translateY(-3px) scale(1.02); /* Slight lift effect */
}

/* Optional: Animates the arrow on hover */
.projectx-link:hover span {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}



/* ==========================================================================
   REVEAL CLASS
   ========================================================================== */
.reveal {
    opacity: 1;
}


/* ==========================================================================
   SERVICES SECTION LAYOUT
   ========================================================================== */
.services {
    padding: 80px 20px;
    background-color: var(--bg);
    text-align: center; /* Centers the "Our Services" title */
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services .title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text);    
    
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services .card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    
    /* Centering logic */
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Bold static shadow */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 

}
.services .card:hover {
    transform: none;
    transition: none;
    box-shadow: 0 0 25px rgba(39, 174, 96, 0.7);
    border-radius: 20px;
}

.services .card {
    transition: none;
}


.services .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.services .card p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ==========================================================================
   LIST STYLING (Checkmarks)
   ========================================================================== */
.services .card ul {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
    text-align: left; /* Keeps list items readable */
    width: 100%;
    max-width: 260px; /* Keeps the list block centered within the card */
}

.services .card ul li {
    color: var(--text-soft);
    padding: 8px 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px; /* Space for the custom bullet */
}

/* Custom Checkmark using --accent */
.services .card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
    background-color: var(--accent);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
}

/* ==========================================================================
   REVEAL CLASS
   ========================================================================== */
.reveal {
    /* Ready for scroll animations */
    opacity: 1; 
}


/* ==========================================================================
   THEME VARIABLES
   ========================================================================== */
:root {
    --accent: #2ecc71;
    --bg: #ffffff;
    --text: #000000;
    --text-soft: #666666;
    --header-bg: #F4F5F7;
    --card-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   LAYOUT WRAPPER
   ========================================================================== */


.features-section {
    padding: 80px 20px;
 
    display: flex;
    justify-content: center; /* Centers the container horizontally */
}

/* ==========================================================================
   GRID CONTAINER
   ========================================================================== */
.features-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    /* Responsive grid logic */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center; /* Centers cards if they don't fill the full width */
}

/* ==========================================================================
   FEATURE CARDS (CENTERED CONTENT)
   ========================================================================== */



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.5);
}

/* ==========================================================================
   ICON STYLING
   ========================================================================== */
.feature-card {
    display: flex;
    flex-direction: row; /* icon left, content right */
    align-items: flex-start; /* align top of icon and text */
    text-align: left; /* keep text left-aligned */
    gap: 20px; /* adds breathing room between icon and content */
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    margin-right: 15px;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: var(--text);
    background: #1A1A1B;
    
    /* Layered depth */
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

svg {
  pointer-events: none;
}


.feature-icon svg, 
.feature-icon i {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
color:#fff;
}

        
.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon {
    flex-shrink: 0; /* Prevents the icon from getting squashed */
}
.feature-card h3,
.feature-card p {
    flex: 1;        /* text takes the remaining space */
}



:root {
            --accent: #2ecc71;
            --bg: #ffffff;
            --text: #000000;
            --text-soft: #666666;
            --header-bg:#F4F5F7;
            --card-bg:#f9f9f9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
        }

        /* Sticky Header */
        Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 100;
    
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header.scrolled {
    background-color:#111828 ; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#Promo {
  scroll-margin-top: 70px;
}
body {
    margin: 0;
}

        

        .logo {
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -1px;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            margin-left: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent);
        }
html {
    scroll-behavior: smooth;
}



.cardx.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cardx.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
       
       
   /* Add these styles to your existing CSS block */
    
    .fw-pricing-footer {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 30px; /* Space between card and button */
    }

    .fw-btn-secondary {
        font-family: 'Inter', sans-serif;
        color: #64748b; /* Subtle slate gray */
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 10px 24px;
        border: 1px solid #27ae60;
        border-radius: 30px;
        transition: all 0.3s ease;
        background: transparent;
    }

    .fw-btn-secondary:hover {
        background-color: #f8fafc;
        border-color: #cbd5e1;
        color: #334155;
        transform: translateY(-1px);
    }

   
   
   
    /* Ensure this stays within your card boundaries */
    .fw-browser-frame {
        width: 100%;
        height: 200px;
        background: #1a1a1b;
        border-radius: 8px 8px 0 0;
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
        border: 1px solid rgba(255,255,255,0.05);
    }

    /* The 'Fake' Browser Dots */
    .fw-browser-dots {
        padding: 8px 12px;
        display: flex;
        gap: 5px;
        background: rgba(0,0,0,0.2);
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 2;
    }

    .fw-browser-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
    }

    /* The Hero Image */
    .fw-browser-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top; /* Shows the 'Hero' part of the site */
        display: block;
        transition: transform 0.3s ease;
    }

    .card:hover .fw-browser-frame img {
        transform: scale(1.1);
    }

    /* Keep text aligned inside the card */
    .card {
        padding: 0 0 20px 0; /* Padding at bottom only so image stays flush to top */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: #111827; /* Dark mode card bg */
    }

    .card h3, .card p, .card .project-link {
        padding: 0 20px;
    }

    .card h3 { margin-top: 10px; }
    .card p { margin-bottom: 20px; flex-grow: 1; }
    
  
  
  
  /* 1. Only affects screens wider than 1024px (Desktop) */
/* Desktop - 4+ cards side by side */
@media (min-width: 1024px) {
  .fw-pricing-grid {
    display: flex;                 /* enable flex layout */
    flex-wrap: wrap;               /* allow wrapping if too many cards */
    justify-content: center;       /* center cards horizontally */
    align-items: stretch;          /* equal height cards */
    gap: 30px;                     /* spacing between cards */
    padding: 40px 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }

  .fw-package-wrapper {
    flex: 1 1 380px;               /* grow, shrink, base width 380px */
    max-width: 380px;              /* prevent them from being too wide */
    margin: 0;
  }
}

/* Mobile - stack vertically */
@media (max-width: 1023px) {
  .fw-pricing-grid {
    display: block; 
    width: 100%;
  }
  
  .fw-package-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}


.fw-plan-tagline {
  font-size: 0.9rem;
  color: white; /* soft gray */
  margin-top: 5px;
text-align:center;
}


.pricing {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin: 5px 0;
}

.old-price {
  text-decoration: line-through;
  color: #fff;
  margin-right: 10px;
}

.new-price {
  color: #fff; /* bright red to highlight */
  font-weight: bold;
}



.promo-ribbon-vertical {
    position: absolute;
    top: -2px;
    right: 0;
    padding: 5px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ff4d4f;
    padding: 8px 5px;
    border-top-left-radius: none;
    border-bottom-left-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10;

}

.promo-ribbon-vertical span {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
font-family: 'Poppins', sans-serif;
}
.fw-sub-headline {
    font-size: 1.1rem;
    color: #334155;
    margin: 20px auto 40px auto;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.fw-package-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: transparent;
}

.fw-card-container {
    background: #ffffff;
    width: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif;
    border: 1px solid #eee;
}

.fw-card-header {
    background: linear-gradient(145deg, #22c55e 0%, #064e3b 100%);
    padding: 30px 25px;
    color: #ffffff;
    display: flex;           /* Add this */
    flex-direction: column;  /* Stack elements vertically */
    align-items: center;     /* Center horizontally */
    position: relative;
}
.fw-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fw-plan-title {
    font-size: 1.5rem;       /* Bigger and more impactful */
    font-weight: 800;         /* Bold for emphasis */
    margin: 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif; /* More modern/interesting font */
    text-align: center;
text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
text-transform: uppercase;
letter-spacing: 1px;
}

.fw-price-display {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
}

.fw-main-amount {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
margin: 5px 0;
}

.fw-price-label, .fw-price-period {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
    color: #ffffff;
}

/* Promotion Badge */
.fw-limited-wrapper {
    text-align: center;
    margin-top: 10px;
}

.fw-limited {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

/* Card Content */
.fw-card-content {
    padding: 25px;
}

.fw-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.fw-feature-item {
    color: #4b5563;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.fw-feature-item:last-child {
    border-bottom: none;
}

.fw-feature-item::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12l3 3 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

/* Button */
.fw-btn-action {
    display: block;
    background: linear-gradient(to right, #22c55e, #064e3b);
    color: #ffffff;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.fw-btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.3);
    color: #ffffff;
}

.fw-trust-note {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 12px;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  background: none;
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 3px 8px;
  border-radius: 25px;
}
/* Basic Card Header */
.fw-card-basic .fw-card-header {
    background: linear-gradient(145deg, #ffffff 0%, gray 100%); /* White to light gray */
    color: #111827; /* Dark text for readability */
}

.fw-card-basic .fw-plan-title {
    color: #111827; /* Darker title */
    text-shadow: none; /* Remove shadow for subtle look */
}

.fw-card-basic .fw-main-amount {
    color: #111827; /* Dark main price */
    text-shadow: none;
}

.fw-card-basic .fw-price-label,
.fw-card-basic .fw-price-period {
    color: #4b5563; /* slightly muted gray */
}

/* Button */
.fw-card-basic .fw-btn-action {
    background: linear-gradient(to right, #22c55e, #064e3b); /* Keep brand accent */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

/* Premium Card Header */
.fw-card-premium .fw-card-header {
    background: linear-gradient(145deg, #4b0082 0%, #1a0a2a 100%); /* Deep purple → near black */
    color: #ffffff;
}

/* Plan Title */
.fw-card-premium .fw-plan-title {
    color: #f9fafb; /* Bright white */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4); /* Slight glow for premium feel */
}

/* Main Amount */
.fw-card-premium .fw-main-amount {
    color: #f9fafb; /* White */
    font-size: 3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Price label and period */
.fw-card-premium .fw-price-label,
.fw-card-premium .fw-price-period {
    color: #d1d5db; /* muted silver/gray for elegance */
}

/* Monthly Price */
.fw-card-premium .new-price {
    color: #ffdd57; /* gold accent for premium subscription */
    font-weight: 700;
    font-size: 1.2rem;
}

/* Button */
.fw-card-premium .fw-btn-action {
    background: linear-gradient(to right, #6a0dad, #2c003e); /* deep purple gradient for luxury feel */
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(106,13,173,0.3);
}

/* Optional badge */
.fw-card-premium .fw-limited {
    background: rgba(255, 221, 87, 0.15); /* subtle gold for badges */
    color: #ffdd57;
}


/* Hero Promo Button - secondary CTA */
.hero-promo-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1); /* soft emerald tint */
    color: #16a34a; /* darker emerald text */
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #16a34a;
    margin-top: 15px; /* spacing below headline/subheadline */
}

/* Hover effect - subtle glow */
.hero-promo-btn:hover {
    background: rgba(34, 197, 94, 0.2); /* slightly stronger tint */
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
    color: #ffffff; /* optional: text turns white on hover */
}
 
 
 
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: sans-serif;
  }

  @media (min-width: 768px) {
    .card-grid {
      flex-direction: row;
      gap: 15px;
    }
  }

  .feature-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    display: flex;
    align-items: center;
    /* This controls the vertical thickness - adjust 12px to your liking */
    padding: 12px 16px; 
    overflow: hidden;
  }

  .card-icon {
    width: 32px;
    height: 32px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
  }

  .card-content {
    display: flex;
    flex-direction: column;
  }

  .card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.2;
  }

  .card-subtitle {
    font-size: 13px;
    color: #4b5563;
    margin: 2px 0 0 0;
  }

  /* Success Checkmark Icon */
  .checkmark {
    width: 16px;
    height: 16px;
    stroke: #22c55e;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


/* ═══════════════════════════════════════
   PRICING FOOTER ROW
═══════════════════════════════════════ */
.prc-footer-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.prc-deposit-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
}
.prc-deposit-note svg {
  width: 14px; height: 14px;
  flex-shrink: 0; margin-top: 2px;
  stroke: rgba(255,255,255,0.3);
}
.prc-deposit-note strong {
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.prc-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.prc-support-btn svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.5);
  transition: stroke 0.25s;
}
.prc-support-btn:hover {
  background: rgba(39,174,96,0.10);
  color: #fff;
  border-color: rgba(39,174,96,0.35);
  transform: translateY(-2px);
}
.prc-support-btn:hover svg { stroke: #27ae60; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.nl-section {
  /* Updated to your specific color */
  background: #101115; 
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
  /* Subtle border to define the top edge against other dark sections */
  
}

.nl-glow {
  position: absolute;
  width: 500px; height: 300px;
  /* Green glow pops nicely against #101115 */
  background: radial-gradient(ellipse, rgba(39,174,96,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.nl-text { flex: 1; min-width: 240px; }

.nl-eyebrow {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #27ae60;
  background: rgba(39,174,96,0.10);
  border: 1px solid rgba(39,174,96,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.nl-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff; /* Contrast against dark background */
  margin-bottom: 8px;
  line-height: 1.15;
}

.nl-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5); /* Muted white for secondary text */
  font-weight: 300;
  line-height: 1.65;
}

.nl-form { flex: 1; min-width: 280px; max-width: 420px; }

.nl-input-wrap {
  display: flex;
  gap: 0;
  /* Slightly lighter or darker than the section to create depth */
  background: rgba(255,255,255,0.03); 
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.nl-input-wrap:focus-within {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,0.15);
}

.nl-input-wrap input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.nl-input-wrap input::placeholder { 
  color: rgba(255,255,255,0.3); 
}

.nl-input-wrap button {
  background: #27ae60;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 0 22px;
  white-space: nowrap;
  transition: background 0.25s;
}

.nl-input-wrap button:hover { background: #1e8449; }

.nl-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.nl-privacy svg {
  width: 11px; height: 11px;
  stroke: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .nl-inner { flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; max-width: 100%; }
}


/* ═══════════════════════════════════════
   PERFORMANCE & ACCESSIBILITY
═══════════════════════════════════════ */

/* GPU-promote elements that animate frequently */
.reveal,
.reveal-left,
.reveal-right,
.whatsapp-float,
.mock-screen img,
.port-btn svg,
.consult-btn svg {
  will-change: opacity, transform;
}

/* Respect user's motion preference — kill all animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
