/* ============================================================
   CREDIBLMEDIA — Main Stylesheet
   Fonts: Syne (headings) + DM Sans (body)
   Theme: Dark Navy + Electric Blue + Gold
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg-dark:    #080E1C;
  --bg-mid:     #0D1829;
  --bg-card:    #0F1E35;
  --bg-card2:   #132240;
  --blue:       #2979FF;
  --blue-light: #5B9BFF;
  --blue-glow:  rgba(41,121,255,0.18);
  --gold:       #F5A623;
  --gold-light: #FFD080;
  --white:      #FFFFFF;
  --text:       #C8D8F0;
  --text-muted: #6E87A8;
  --border:     rgba(41,121,255,0.15);
  --radius:     14px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.4);
  --glow:       0 0 30px rgba(41,121,255,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  line-height: 1.15;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }

img { max-width: 100%; height: auto; }

.py-6 { padding-top: 80px; padding-bottom: 80px; }
.z-index-1 { position: relative; z-index: 1; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.accent-text { color: var(--blue); }
.accent-gold  { color: var(--gold); }
.body-text    { color: var(--text); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  border: 1px solid rgba(41,121,255,0.3);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,121,255,0.12);
  border: 1px solid rgba(41,121,255,0.3);
  color: var(--blue-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
}

/* ---------- SECTION BACKGROUNDS ---------- */
.section-dark { background: var(--bg-dark); }
.section-mid  { background: var(--bg-mid); }

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::after {
  content:'';
  position:absolute; inset:0;
  background: rgba(255,255,255,0.12);
  opacity:0;
  transition: opacity var(--transition);
}
.btn-primary-custom:hover { background: var(--blue-light); border-color: var(--blue-light); color:#fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,121,255,0.4); }
.btn-primary-custom:hover::after { opacity:1; }
.btn-arrow { display: inline-block; margin-left: 6px; transition: transform var(--transition); }
.btn-primary-custom:hover .btn-arrow { transform: translateX(4px); }

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-outline-custom:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.credi-nav {
  background: rgba(8,14,28,0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.4s ease;
}
.credi-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.credi-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(41,121,255,0.5);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--blue); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(41,121,255,0.1);
}

.toggler-icon {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-grid {
  position: absolute; inset:0;
  background-image:
    linear-gradient(rgba(41,121,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.8;
}

/* Hero Visual */
.hero-visual { position: relative; display: inline-block; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(41,121,255,0.35) 0%, transparent 70%);
  top: -50px; right: -50px;
  animation: pulse-orb 4s ease-in-out infinite;
}
.orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  bottom: -30px; left: -30px;
  animation: pulse-orb 6s ease-in-out infinite reverse;
}
@keyframes pulse-orb {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow), var(--glow);
}
.hero-img { border-radius: 12px; width: 100%; max-width: 420px; height: 280px; object-fit: cover; background: var(--bg-card2); }

.metric-badge {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}
.metric-badge.top-right { top: -20px; right: -20px; animation-delay: 0s; }
.metric-badge.bottom-left { bottom: -20px; left: -20px; animation-delay: 1.5s; }
.metric-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--gold); }
.metric-lbl { font-size: 0.72rem; color: var(--text-muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number, .stat-suffix {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--blue);
  display: inline;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- SERVICE CARDS ---------- */
.service-card-link { text-decoration: none !important; display: block; height: 100%; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41,121,255,0.4);
  box-shadow: var(--shadow), var(--glow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-cta {
  background: linear-gradient(135deg, rgba(41,121,255,0.1), rgba(245,166,35,0.08));
  border-style: dashed;
  border-color: rgba(41,121,255,0.25);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; flex: 1; }
.service-cta { font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-top: 16px; display: block; }
.service-cta span { transition: transform var(--transition); display: inline-block; }
.service-card:hover .service-cta span { transform: translateX(5px); }

/* ---------- WHY US SECTION ---------- */
.why-visual { position: relative; }
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--glow);
}
.why-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.why-img-wrap img { width: 100%; height: 380px; object-fit: cover; background: var(--bg-card); border-radius: var(--radius-lg); }

.why-icon {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-point:hover .why-icon { background: var(--blue-glow); border-color: rgba(41,121,255,0.4); }
.why-pt-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.why-pt-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(41,121,255,0.3); transform: translateY(-4px); }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.75; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.author-company { font-size: 0.8rem; color: var(--text-muted); }
.service-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--blue-glow);
  color: var(--blue-light);
  border: 1px solid rgba(41,121,255,0.2);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ---------- CTA SECTION ---------- */
.cta-section { background: var(--bg-dark); }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0F1F40 100%);
  border: 1px solid rgba(41,121,255,0.25);
  border-radius: 24px;
  padding: 72px 40px;
  overflow: hidden;
}
.cta-glow {
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:600px; height:300px;
  background: radial-gradient(ellipse, rgba(41,121,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.cta-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #040A16;
  border-top: 1px solid var(--border);
}
.footer-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer-heading { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-muted); }
.footer-contact a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 16px; }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: all var(--transition);
  animation: pop-in 0.6s 2s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes pop-in {
  0% { transform: scale(0); opacity:0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity:1; }
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute; top:-100px; left:50%; transform: translateX(-50%);
  width:600px; height:300px;
  background: radial-gradient(ellipse, rgba(41,121,255,0.1) 0%, transparent 70%);
  pointer-events:none;
}
.page-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.page-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ---------- ABOUT PAGE ---------- */
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(41,121,255,0.4);
}
.about-badge .ab-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; display: block; }
.about-badge .ab-lbl { font-size: 0.75rem; opacity: 0.85; display: block; }
.rounded-card { border-radius: var(--radius-lg); }

.value-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}
.value-chip:hover { border-color: rgba(41,121,255,0.4); background: var(--bg-card2); }
.vc-icon { font-size: 1.1rem; }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(41,121,255,0.35); transform: translateY(-4px); }
.vc-icon-lg { font-size: 2rem; }
.vc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); }
.vc-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.role-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}
.role-pill:hover { background: var(--blue-glow); border-color: rgba(41,121,255,0.4); color: var(--white); }

/* ---------- SERVICES PAGE ---------- */
.service-detail-section { position: relative; }
.service-icon-xl {
  font-size: 5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(41,121,255,0.3));
  animation: float 4s ease-in-out infinite;
}
.service-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
}
.sr-tag { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.sr-text { color: var(--white); font-weight: 600; font-size: 0.95rem; margin: 8px 0 0; }

.service-tagline { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.fl-check { color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ---------- RESULTS PAGE ---------- */
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  transition: all var(--transition);
}
.impact-card:hover { border-color: rgba(41,121,255,0.35); transform: translateY(-4px); }
.impact-icon { font-size: 1.8rem; margin-bottom: 10px; }
.impact-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--blue); }
.impact-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.case-study-card:hover { border-color: rgba(41,121,255,0.3); box-shadow: var(--shadow); }
.case-visual { background: var(--bg-card2); }
.case-color-blue { background: linear-gradient(135deg, rgba(41,121,255,0.15), rgba(41,121,255,0.05)); }
.case-color-gold { background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05)); }
.case-tag { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); }
.case-headline { font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 0; }
.case-brand { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }
.case-metric .cm-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--gold); }
.case-metric .cm-lbl { font-size: 0.75rem; color: var(--text-muted); }
.case-body { background: var(--bg-card); }
.case-block-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.case-block-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ---------- CONTACT PAGE ---------- */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: sticky;
  top: 100px;
}
.ci-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--blue-glow);
  border: 1px solid rgba(41,121,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.ci-value { color: var(--white); font-weight: 500; font-size: 0.9rem; }
a.ci-value:hover { color: var(--blue); }
.ci-divider { border: none; border-top: 1px solid var(--border); }
.ci-sub { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.resp-badge {
  display: inline-block;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.cf-title { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.cf-sub { color: var(--text-muted); font-size: 0.9rem; }

.form-label-custom { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 8px; display: block; }
.req { color: var(--blue); }

.form-input-custom {
  display: block;
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition);
  appearance: none;
}
.form-input-custom::placeholder { color: var(--text-muted); }
.form-input-custom:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-card2);
  box-shadow: 0 0 0 3px rgba(41,121,255,0.15);
}
select.form-input-custom { cursor: pointer; }
textarea.form-input-custom { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }

.alert-success-custom {
  background: rgba(46,213,115,0.12);
  border: 1px solid rgba(46,213,115,0.3);
  color: #2ed573;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.alert-error-custom {
  background: rgba(255,71,87,0.12);
  border: 1px solid rgba(255,71,87,0.3);
  color: #ff4757;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .py-6 { padding-top: 60px; padding-bottom: 60px; }
  .stats-bar .stat-item:nth-child(2n) { border-right: none; }
  .stats-bar .stat-item:nth-child(1),
  .stats-bar .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .feature-list { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 767.98px) {
  .hero-headline { font-size: 2.2rem; }
  .metric-badge.top-right { top: -10px; right: -10px; }
  .metric-badge.bottom-left { bottom: -10px; left: -10px; }
  .cta-card { padding: 40px 24px; }
  .case-study-card .row { flex-direction: column !important; }
  .navbar-cta { margin-top: 12px; }
  .case-visual { padding: 40px 24px !important; }
}

@media (max-width: 575.98px) {
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar .stat-item:last-child { border-bottom: none; }
}
