/* =============================================
   TOKLIQ BRAND COLORS
   Navy Dark  : #1c2b33
   Royal Blue : #212c62
   Violet     : #174da1
   ============================================= */
:root {
  --navy:      #1c2b33;
  --royal:     #212c62;
  --violet:    #174da1;
  --white:     #ffffff;
  --offwhite:  #f4f6fb;
  --light:     #e8ecf7;
  --muted:     #8a97b0;
  --text:      #1c2b33;

  /* Fonarto fallback chain — Nunito is the closest rounded-geometric web font */
  --font-main: 'Fonarto', 'Nunito', 'Helvetica Rounded LT Std', 'Arial Rounded MT Bold', sans-serif;
  --font-sub:  'Helvetica Rounded LT Std', 'Nunito', 'Arial Rounded MT Bold', sans-serif;

  --grad:      linear-gradient(135deg, #212c62 0%, #174da1 100%);
  --grad-r:    linear-gradient(135deg, #174da1 0%, #212c62 100%);
  --grad-light: linear-gradient(135deg, #e8ecf7 0%, #dce4f5 100%);
  --shadow-sm: 0 4px 20px rgba(33,44,98,0.10);
  --shadow-md: 0 12px 40px rgba(33,44,98,0.18);
  --shadow-lg: 0 24px 70px rgba(33,44,98,0.25);
  --radius:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sub);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 10px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(33,44,98,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--font-main);
  font-size: 1.9rem; font-weight: 900;
  color: var(--royal);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--violet);
  display: inline-block; margin-bottom: 4px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-sub);
  color: var(--navy); text-decoration: none;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--violet); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--violet); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grad); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.88rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(23,77,161,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(23,77,161,0.45); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 6vw 80px;
  position: relative; overflow: hidden;
}

/* Geometric background shapes */
.hero-shape-1 {
  position: absolute; top: -80px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,77,161,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-shape-2 {
  position: absolute; bottom: -120px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(33,44,98,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-shape-3 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-4 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 650px; height: 650px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
/* Grid dots */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(23,77,161,0.25);
  border: 1px solid rgba(23,77,161,0.5);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #a8c4f0;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6fa3e8; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(168,196,240,0.7);
}
.hero-title .highlight {
  background: linear-gradient(90deg, #7eb3f5, #a8c4f0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 460px; margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-primary {
  background: var(--white); color: var(--royal);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.92rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,255,255,0.25); }

.btn-hero-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.92rem; font-weight: 700;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hstat-num {
  font-family: var(--font-main);
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  background: linear-gradient(90deg, #ffffff, #a8c4f0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hstat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 5px; font-weight: 600; letter-spacing: 0.04em; }

/* Hero right — visual card */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px; padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.hero-card-title {
  font-family: var(--font-main);
  font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 28px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.service-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(23,77,161,0.3); border: 1px solid rgba(23,77,161,0.5);
  color: #a8c4f0; padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; margin: 5px 4px;
  transition: background 0.2s;
}
.service-pill:hover { background: rgba(23,77,161,0.5); }
.service-pill span { font-size: 1rem; }
.hero-card-stat {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between;
}
.hcs-item { text-align: center; }
.hcs-num {
  font-family: var(--font-main);
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, #7eb3f5, #ffffff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hcs-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 600; }

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--violet);
  background: rgba(23,77,161,0.08);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900; letter-spacing: -1px; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}
.section-title .c { color: var(--violet); }
.section-sub {
  color: var(--muted); line-height: 1.8;
  max-width: 520px; font-size: 0.98rem;
}

section { padding: 110px 6vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════ */
.marquee-section {
  background: var(--royal); padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 0; animation: marquee 22s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 36px; white-space: nowrap;
  font-family: var(--font-main);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.marquee-item .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(168,196,240,0.6); }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: var(--offwhite); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-main-card {
  background: var(--grad); border-radius: 28px; padding: 48px 40px;
  color: var(--white); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-main-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.about-main-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.about-card-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.about-card-big {
  font-family: var(--font-main);
  font-size: 3.8rem; font-weight: 900; line-height: 1;
  position: relative; z-index: 1; margin-bottom: 10px;
}
.about-card-text {
  font-size: 0.9rem; opacity: 0.75; line-height: 1.6;
  position: relative; z-index: 1;
}

.about-mini-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px;
}
.about-mini {
  background: var(--white); border-radius: 18px; padding: 22px 20px;
  border: 1px solid var(--light); box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-mini-num {
  font-family: var(--font-main);
  font-size: 1.8rem; font-weight: 900; color: var(--royal);
}
.about-mini-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; font-weight: 600; }

.about-text { }
.about-body { color: var(--muted); line-height: 1.85; font-size: 0.97rem; margin-bottom: 16px; }
.about-points { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-points li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.93rem; color: var(--text); line-height: 1.6;
}
.about-check {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(23,77,161,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--violet); font-weight: 900; margin-top: 1px;
}

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */
#features { background: var(--white); }
.features-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 60px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feat-card {
  background: var(--offwhite); border-radius: var(--radius);
  padding: 34px 28px; border: 1px solid var(--light);
  transition: all 0.3s; position: relative; overflow: hidden;
  cursor: default;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feat-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(23,77,161,0.15);
}
.feat-card:hover::before { transform: scaleX(1); }

.feat-num {
  font-family: var(--font-main);
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.15em;
  color: var(--violet); text-transform: uppercase; margin-bottom: 18px;
}
.feat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(33,44,98,0.08), rgba(23,77,161,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
  border: 1px solid rgba(23,77,161,0.1);
}
.feat-title {
  font-family: var(--font-main);
  font-size: 1.08rem; font-weight: 900; color: var(--navy); margin-bottom: 10px;
}
.feat-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════
   SERVICES (What We Build)
══════════════════════════════════ */
#screenshots { background: var(--navy); }
#screenshots .section-title { color: var(--white); }
#screenshots .section-tag {
  background: rgba(255,255,255,0.08); color: #a8c4f0;
}
#screenshots .section-sub { color: rgba(255,255,255,0.5); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.srv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.srv-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(23,77,161,0.2), transparent);
  transition: height 0.35s;
}
.srv-card:hover {
  background: rgba(23,77,161,0.15);
  border-color: rgba(23,77,161,0.4);
  transform: translateY(-5px);
}
.srv-card:hover::after { height: 100%; }
.srv-emoji { font-size: 2.2rem; margin-bottom: 20px; display: block; position: relative; z-index: 1; }
.srv-name {
  font-family: var(--font-main);
  font-weight: 900; font-size: 1.05rem; color: var(--white); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.srv-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; position: relative; z-index: 1; }

/* ══════════════════════════════════
   HOW WE WORK (process)
══════════════════════════════════ */
#process { background: var(--navy); }
#process .section-title { color: var(--white); }
#process .section-tag { background: rgba(255,255,255,0.08); color: #a8c4f0; }
#process .section-sub { color: rgba(255,255,255,0.5); }

.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
  position: relative;
}
.process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.process-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(23,77,161,0.2), transparent);
  transition: height 0.35s;
}
.process-card:hover {
  background: rgba(23,77,161,0.15);
  border-color: rgba(23,77,161,0.4);
  transform: translateY(-5px);
}
.process-card:hover::after { height: 100%; }
.process-num {
  font-family: var(--font-main);
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em;
  color: #a8c4f0; text-transform: uppercase; margin-bottom: 18px;
  display: inline-block; position: relative; z-index: 1;
}
.process-title {
  font-family: var(--font-main);
  font-weight: 900; font-size: 1.3rem; color: var(--white); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.process-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; position: relative; z-index: 1; }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
#testimonials { background: var(--offwhite); }
.testi-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; margin-top: 56px;
}
.testi-left { position: sticky; top: 100px; }
.rating-box {
  background: var(--grad); border-radius: 24px; padding: 40px 32px;
  color: var(--white); text-align: center; box-shadow: var(--shadow-lg);
  margin-bottom: 22px;
}
.rating-num {
  font-family: var(--font-main);
  font-size: 4.5rem; font-weight: 900; line-height: 1;
}
.rating-stars { font-size: 1.3rem; letter-spacing: 4px; margin: 10px 0; opacity: 0.9; }
.rating-text { font-size: 0.82rem; opacity: 0.7; font-weight: 600; }
.clients-box {
  background: var(--white); border: 1px solid var(--light);
  border-radius: 18px; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.clients-num {
  font-family: var(--font-main);
  font-size: 2.2rem; font-weight: 900; color: var(--royal);
}
.clients-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.testi-right {
  display: flex; flex-direction: column; gap: 18px;
}
.testi-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--radius); padding: 30px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.testi-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.testi-meta {}
.testi-title {
  font-family: var(--font-main); font-weight: 900; font-size: 0.98rem; color: var(--navy); margin-bottom: 3px;
}
.testi-company { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.testi-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.92rem; color: #4a5568; line-height: 1.78;
  font-style: italic; border-left: 3px solid rgba(23,77,161,0.2);
  padding-left: 16px; margin-top: 12px;
}

/* ══════════════════════════════════
   OUR APPROACH (no fixed packages)
══════════════════════════════════ */
#pricing { background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-sub { margin: 0 auto; text-align: center; }
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.approach-card {
  background: var(--offwhite); border: 1px solid var(--light);
  border-radius: 24px; padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.approach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.approach-num {
  font-family: var(--font-main);
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em;
  color: var(--violet); margin-bottom: 20px;
}
.approach-title {
  font-family: var(--font-main);
  font-size: 1.15rem; font-weight: 900; color: var(--navy); margin-bottom: 12px;
  line-height: 1.3;
}
.approach-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.approach-note {
  margin-top: 32px;
  background: var(--offwhite); border: 1px solid var(--light);
  border-radius: 18px; padding: 26px 30px;
  font-size: 0.92rem; color: var(--text); line-height: 1.7;
  max-width: 760px;
}
.approach-note strong { color: var(--violet); }
@media (max-width: 768px) {
  .approach-grid { grid-template-columns: 1fr; }
}
/* legacy pricing-grid rules kept harmless if referenced elsewhere */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.plan-card {
  background: var(--offwhite); border: 1px solid var(--light);
  border-radius: 24px; padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  background: var(--grad); border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.2);
  color: var(--white); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
}
.plan-tier {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 20px;
}
.plan-card.featured .plan-tier { color: rgba(255,255,255,0.7); }
.plan-price {
  font-family: var(--font-main);
  font-size: 2.9rem; font-weight: 900; letter-spacing: -1px;
  color: var(--navy); margin-bottom: 4px;
}
.plan-card.featured .plan-price { color: var(--white); }
.plan-price sup { font-size: 1.1rem; vertical-align: super; font-weight: 700; }
.plan-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; font-weight: 600; }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan-divider { height: 1px; background: var(--light); margin-bottom: 22px; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.15); }
.plan-features { list-style: none; margin-bottom: 34px; display: flex; flex-direction: column; gap: 11px; }
.plan-features li {
  font-size: 0.86rem; color: var(--text); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.88); }
.plan-check {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  background: rgba(23,77,161,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--violet); font-weight: 900; margin-top: 1px;
}
.plan-card.featured .plan-check { background: rgba(255,255,255,0.2); color: var(--white); }
.plan-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 13px 24px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.9rem; font-weight: 800;
  transition: all 0.25s;
}
.plan-btn-outline {
  border: 1.5px solid rgba(23,77,161,0.25); color: var(--royal);
  background: transparent;
}
.plan-btn-outline:hover { background: rgba(23,77,161,0.07); border-color: var(--violet); }
.plan-btn-white {
  background: var(--white); color: var(--royal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.plan-btn-white:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.22); transform: translateY(-1px); }

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
#cta {
  background: var(--navy);
  padding: 120px 6vw;
  position: relative; overflow: hidden; text-align: center;
}
#cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,77,161,0.3) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: #a8c4f0;
  background: rgba(23,77,161,0.25); border: 1px solid rgba(23,77,161,0.4);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: var(--white); letter-spacing: -1.5px;
  line-height: 1.08; margin-bottom: 20px;
}
.cta-title .c {
  background: linear-gradient(90deg, #7eb3f5, #a8c4f0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-sub { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.8; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main {
  background: var(--white); color: var(--royal);
  padding: 15px 36px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.95rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,255,255,0.25); }
.btn-cta-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 15px 36px; border-radius: 50px;
  font-family: var(--font-sub); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #111920;
  padding: 60px 6vw 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-main);
  font-size: 2rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.5px; display: block; margin-bottom: 14px;
}
.footer-logo-dot { color: #7eb3f5; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-family: var(--font-main);
  font-size: 0.85rem; font-weight: 900; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 18px; text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-right { animation: fadeUp 0.9s ease 0.35s both; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .features-header { grid-template-columns: 1fr; gap: 20px; }
  .testi-layout { grid-template-columns: 1fr; }
  .testi-left { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .about-mini-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }


.nav-logo{
    flex:1;
}

.logo-img{
    height:130px !important;
}

.nav-links{
    display:none;
}


}
@media (max-width: 540px) {
  .features-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .testi-left { grid-template-columns: 1fr; }
}

/* Navbar Logo */
.logo-img{
    height:158px;
    width:auto;
    display:block;
}

/* Footer Logo */
.footer-logo-img{
    max-width:240px;
    width:100%;
    height:auto;
    display:block;
    margin-bottom:20px;
}

.modal{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
z-index:9999;
}

.modal-content{
background:#fff;
width:420px;
max-width:95%;
margin:70px auto;
padding:30px;
border-radius:10px;
position:relative;
}

.close{
position:absolute;
right:20px;
top:15px;
cursor:pointer;
font-size:28px;
}

.form-group{
margin-bottom:18px;
}

.form-group input{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:15px;
}

.error{
color:red;
font-size:12px;
display:block;
margin-top:5px;
}

#submitBtn{
width:100%;
padding:14px;
background:#174da1;
color:#fff;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

#submitBtn:disabled{
opacity:.6;
cursor:not-allowed;
}

#responseMsg{
margin-top:15px;
text-align:center;
font-weight:bold;
}