/* ==========================================================================
   Growbiz Innovations - Master Agency Stylesheet (With High-Class 3D FAQ)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Clean Light Executive Palette */
  --clr-bg-page: #f8fafc;
  --clr-bg-card: #ffffff;
  --clr-bg-alt: #f1f5f9;
  --clr-bg-dark: #0f172a;
  --clr-bg-dark-card: #1e293b;
  
  --clr-text-primary: #0f172a;
  --clr-text-secondary: #334155;
  --clr-text-muted: #64748b;
  --clr-text-light: #ffffff;
  
  /* Vibrant Accent Colors */
  --clr-brand-teal: #0d9488;
  --clr-brand-teal-light: #14b8a6;
  --clr-brand-blue: #2563eb;
  --clr-brand-indigo: #4f46e5;
  --clr-brand-purple: #7c3aed;
  --clr-brand-pink: #ec4899;
  --clr-brand-amber: #f59e0b;
  --clr-brand-emerald: #10b981;

  --clr-whatsapp: #25d366;
  --clr-whatsapp-hover: #1da851;

  --clr-border: #cbd5e1;
  
  /* 3D Shadows & Depth */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 22px -4px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.1);
  --shadow-3d: 0 18px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 20px -6px rgba(13, 148, 136, 0.1);
  --shadow-3d-hover: 0 28px 55px -12px rgba(13, 148, 136, 0.22), 0 14px 28px -8px rgba(37, 99, 235, 0.18);
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-normal: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Universal Protection
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--clr-bg-page);
  color: var(--clr-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   3. Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section-padding {
  padding: 3.75rem 0;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(37, 99, 235, 0.12));
  color: var(--clr-brand-teal);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(13, 148, 136, 0.25);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  max-width: 100%;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1.2;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   GLOSSY 3D BUTTON STYLING (DESKTOP)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn-whatsapp {
  background: linear-gradient(180deg, #34d399 0%, #25d366 45%, #059669 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 24px -4px rgba(37, 211, 102, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 32px -4px rgba(37, 211, 102, 0.6);
  background: linear-gradient(180deg, #6ee7b7 0%, #25d366 45%, #047857 100%);
}

.btn-calendly {
  background: linear-gradient(180deg, #334155 0%, #0f172a 50%, #020617 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 24px -4px rgba(15, 23, 42, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-calendly:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 14px 32px -4px rgba(15, 23, 42, 0.65);
  background: linear-gradient(180deg, #475569 0%, #1e293b 50%, #0f172a 100%);
}

.btn-outline {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  box-shadow: inset 0 1px 0 #ffffff, 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  border-color: #0d9488;
  color: #0d9488;
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 24px rgba(13, 148, 136, 0.25);
}

/* --------------------------------------------------------------------------
   4. Header & Sleek Navigation Navbar (PERMANENTLY FIXED AT TOP)
   -------------------------------------------------------------------------- */
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

.header-announcement {
  background: linear-gradient(90deg, #0d9488 0%, #2563eb 100%);
  color: #ffffff;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.2px;
}

.header-announcement .ribbon-badge {
  background: #ffffff;
  color: #0f172a;
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.header-main {
  height: 66px;
  display: flex;
  align-items: center;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 2px;
  border: 1.5px solid rgba(13, 148, 136, 0.3);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: #0f172a;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  transition: all 0.2s ease;
  padding: 0.35rem 0.2rem;
  position: relative;
}

.nav-link:hover {
  color: var(--clr-brand-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-actions .btn-whatsapp {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 50px;
}

.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem;
  color: #0f172a;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION WITH UNZOOMED BACKGROUND VIDEO & FROSTED GLASS BOX (LAPTOP FIT)
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 105px !important;
  padding-bottom: 1.25rem !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
}


.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.hero-glass-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.25rem 1.75rem !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.22);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-result-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 1.25rem auto !important;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 0.65rem 1.25rem !important;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-sizing: border-box;
  text-align: center;
}

.hero-result-callout .result-statement {
  font-size: 0.92rem !important;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero-result-callout .result-highlight {
  color: #34d399;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem) !important;
  font-weight: 800;
  line-height: 1.15 !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem !important;
}

.hero-line-1 {
  display: block;
  color: #0f172a;
}

.hero-line-2 {
  display: block;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-line-3 {
  display: block;
  color: #059669;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem) !important;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 0.9rem !important;
  color: var(--clr-text-secondary);
  line-height: 1.45 !important;
  max-width: 760px;
  margin: 0 auto 0.75rem auto !important;
}

.hero-price-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 60%, #020617 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  border: 1.5px solid rgba(13, 148, 136, 0.3);
  margin-bottom: 0.75rem !important;
}

.hero-price-card .price-tag {
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-brand-teal-light);
  font-weight: 800;
  margin-bottom: 0.15rem !important;
  text-align: center;
}

.hero-price-card .price-main {
  font-size: 1.25rem !important;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem !important;
  flex-wrap: wrap;
  margin-bottom: 0.75rem !important;
  width: 100%;
}

.hero-cta-group .btn {
  padding: 0.55rem 1.2rem !important;
  font-size: 0.85rem !important;
}

.dev-consult-3d {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.65rem 1.2rem !important;
  text-align: left;
  box-shadow: var(--shadow-3d);
  border: 1.5px solid rgba(13, 148, 136, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem !important;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.dev-consult-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #10b981 0%, #0d9488 50%, #2563eb 100%);
}

.dev-consult-info h4 {
  font-size: 0.95rem !important;
  font-weight: 800;
  color: var(--clr-text-primary);
  margin-bottom: 0.15rem !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dev-consult-info p {
  font-size: 0.82rem !important;
  color: var(--clr-text-secondary);
  line-height: 1.35 !important;
  max-width: 540px;
}

.dev-consult-actions {
  display: flex;
  gap: 0.5rem !important;
  flex-wrap: wrap;
}



/* --------------------------------------------------------------------------
   6. Complete Web Package (DESKTOP)
   -------------------------------------------------------------------------- */
.features-section {
  background-color: #ffffff;
}

.features-3d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.card-3d {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-3d);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card-3d:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(13, 148, 136, 0.4);
}

.card-3d.c-teal::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #0d9488, #14b8a6); }
.card-3d.c-blue::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #2563eb, #3b82f6); }
.card-3d.c-purple::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #7c3aed, #a855f7); }
.card-3d.c-amber::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.card-3d.c-pink::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #ec4899, #f43f5e); }
.card-3d.c-emerald::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #10b981, #34d399); }

.card-3d-clipart {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12), inset 0 1px 0 #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.8);
  position: relative;
}

.card-3d-clipart svg {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.card-3d-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  margin-bottom: 0.75rem;
}

.card-3d-desc {
  font-size: 0.98rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. How It Works Section
   -------------------------------------------------------------------------- */
.steps-section {
  background-color: var(--clr-bg-alt);
}

.steps-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.step-card-3d {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2.25rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-3d);
  border: 1px solid var(--clr-border);
  transition: var(--transition-normal);
}

.step-card-3d:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.step-badge-3d {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.s-1 .step-badge-3d { background: linear-gradient(135deg, #0d9488 0%, #10b981 100%); }
.s-2 .step-badge-3d { background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); }
.s-3 .step-badge-3d { background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%); }

.step-title-3d {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  margin-bottom: 0.85rem;
}

.step-desc-3d {
  font-size: 0.98rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Featured Service Industries (DESKTOP)
   -------------------------------------------------------------------------- */
.industries-section {
  background-color: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.35rem;
  width: 100%;
}

.industry-card-3d {
  background: var(--clr-bg-page);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.industry-card-3d:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--clr-brand-teal);
  box-shadow: var(--shadow-3d);
}

.industry-clipart-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1), inset 0 1px 0 #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-clipart-box svg {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15));
}

.industry-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   9. ULTRA-ATTRACTIVE HIGH-CLASS 3D FAQ SECTION
   -------------------------------------------------------------------------- */
.trust-section {
  background-color: var(--clr-bg-alt);
}

.faq-3d-wrapper {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-card-3d {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-3d);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.faq-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(13, 148, 136, 0.5);
}

.faq-card-3d.active {
  border-color: var(--clr-brand-teal);
  box-shadow: 0 20px 45px -8px rgba(13, 148, 136, 0.22);
}

.faq-header-3d {
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1.25rem;
  user-select: none;
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex: 1;
}

.faq-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.faq-icon-1 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #ffffff; }
.faq-icon-2 { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #ffffff; }
.faq-icon-3 { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); color: #ffffff; }

.faq-question-text {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1.35;
}

.faq-badge-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

.tag-emerald { background: rgba(16, 185, 129, 0.12); color: #059669; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-blue { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; border: 1px solid rgba(37, 99, 235, 0.3); }
.tag-purple { background: rgba(124, 58, 237, 0.12); color: #6d28d9; border: 1px solid rgba(124, 58, 237, 0.3); }

.faq-toggle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-bg-page);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card-3d.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--clr-brand-teal);
  color: #ffffff;
  border-color: var(--clr-brand-teal);
}

.faq-content-3d {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: #ffffff;
}

.faq-card-3d.active .faq-content-3d {
  max-height: 800px;
  transition: max-height 0.5s ease-in-out;
}

.faq-body-inner {
  padding: 0 2rem 2rem 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 1.5rem;
}

.faq-answer-text {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.faq-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
  border: 1.5px dashed rgba(13, 148, 136, 0.4);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   10. Final Call To Action Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  width: 100%;
}

.cta-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  width: 100%;
}

.cta-contact-email {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-contact-email a {
  color: var(--clr-brand-teal-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-badge-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   11. Executive Agency Footer (ROCK-SOLID 4-COLUMN GRID)
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0b1329;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  border-top: 2px solid rgba(13, 148, 136, 0.3);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border-radius: 8px;
}

.footer-logo-text {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 380px;
}

.footer-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-email-link {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-email-link:hover {
  color: #ffffff;
}

.footer-wa-btn {
  padding: 0.55rem 1.1rem !important;
  font-size: 0.85rem !important;
  border-radius: 50px !important;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-brand-teal);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #10b981;
  padding-left: 3px;
}

.footer-dev-guarantee {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.footer-dev-guarantee h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-dev-guarantee p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badge-wrap {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(13, 148, 136, 0.25) 100%) !important;
  border: 1.5px solid #34d399 !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}


/* --------------------------------------------------------------------------
   12. STRICT MOBILE RESPONSIVE MEDIA QUERIES (320px - 768px PERFECT FIT)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .section-padding {
    padding: 2.75rem 0 !important;
  }

  .problem-cards-grid,
  .solution-grid,
  .industries-grid,
  .stats-grid-3d,
  .steps-3d-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 2.25rem 0 !important;
  }

  .problem-cards-grid,
  .solution-grid,
  .industries-grid,
  .stats-grid-3d,
  .steps-3d-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .header-announcement {
    padding: 0.35rem 0.5rem;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .header-announcement .ribbon-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.45rem;
  }

  .header-main {
    height: 60px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-img {
    height: 38px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-bottom: 2px solid var(--clr-brand-teal);
    transform: translateY(-200%);
    transition: transform var(--transition-normal);
    z-index: 999;
  }

  .nav-menu .nav-link {
    color: #0f172a;
    font-size: 1.05rem;
    padding: 0.45rem 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-glass-box {
    padding: 1.5rem 1rem;
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Hero Badge Mobile Fit */
  .hero-riskfree-badge {
    flex-direction: column !important;
    gap: 0.2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.6rem 0.75rem !important;
    margin: 0 0 1.25rem 0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .hero-riskfree-badge .badge-line-1,
  .hero-riskfree-badge .badge-line-2 {
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .hero-riskfree-badge .badge-separator {
    display: none !important;
  }

  /* Headline Sizing on Mobile */
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-line-1 { font-size: 1.7rem; }
  .hero-line-2 { font-size: 1.7rem; }
  .hero-line-3 { font-size: 1.6rem; }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-price-card {
    padding: 1rem 0.85rem;
    width: 100%;
    border-radius: 14px;
  }

  .hero-price-card .price-tag {
    font-size: 0.72rem;
  }

  .hero-price-card .price-main {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .hero-cta-group, .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .btn {
    width: 100%;
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
    white-space: normal;
  }

  .dev-consult-3d {
    padding: 1.25rem 1rem;
  }

  .dev-consult-info h4 {
    font-size: 1.1rem;
  }

  .dev-consult-info p {
    font-size: 0.88rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features-3d-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .industry-card-3d {
    padding: 1.25rem 0.65rem;
  }

  .industry-name {
    font-size: 0.88rem;
  }

  .faq-header-3d {
    padding: 1.25rem 1rem;
  }

  .faq-title-wrap {
    gap: 0.75rem;
  }

  .faq-icon-badge {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .faq-question-text {
    font-size: 1.02rem;
  }

  .faq-body-inner {
    padding: 0 1.25rem 1.5rem 1.25rem;
  }

  .faq-answer-text {
    font-size: 0.95rem;
  }

  .faq-highlight-pill {
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.98rem;
  }

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

/* --------------------------------------------------------------------------
   Problem & Solution Sections
   -------------------------------------------------------------------------- */
.problem-section {
  background: #f8fafc;
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.problem-card-3d {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 2px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.08);
  position: relative;
  transition: var(--transition-normal);
}

.problem-card-3d:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(239, 68, 68, 0.18);
  border-color: #ef4444;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1.15rem;
  display: inline-block;
  background: #fef2f2;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.problem-card-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

/* JUMP-OUT DARK EXECUTIVE 3D SOLUTION SECTION */
.solution-section {
  background: linear-gradient(180deg, #0b1329 0%, #0f172a 100%) !important;
  color: #ffffff !important;
  padding: 5rem 0 !important;
  border-top: 2px solid rgba(52, 211, 153, 0.4) !important;
  border-bottom: 2px solid rgba(52, 211, 153, 0.4) !important;
}

.solution-section .section-title {
  color: #ffffff !important;
}

.solution-section .section-subtitle {
  color: #94a3b8 !important;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.solution-card-3d {
  background: rgba(30, 41, 59, 0.95) !important;
  border: 2px solid #34d399 !important;
  border-radius: 20px !important;
  padding: 2.25rem 1.6rem !important;
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.solution-card-3d:hover {
  transform: translateY(-10px) scale(1.03) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 30px 60px rgba(56, 189, 248, 0.35) !important;
}

.sol-badge {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 0.4rem 0.95rem !important;
  border-radius: 50px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4) !important;
  margin-bottom: 1rem !important;
}

.sol-title {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.65rem !important;
  line-height: 1.3 !important;
}

.sol-desc {
  color: #cbd5e1 !important;
  font-size: 0.93rem !important;
  line-height: 1.6 !important;
}

/* --------------------------------------------------------------------------
   Authority & Proof Stats Section (HIGH-IMPACT NEON CYAN & GOLD)
   -------------------------------------------------------------------------- */
.authority-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.authority-section .section-title,
.authority-section .section-subtitle {
  color: #ffffff !important;
}

.stats-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.stat-card-3d {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border: 2px solid #38bdf8 !important;
  border-radius: var(--radius-lg) !important;
  padding: 2rem 1.5rem !important;
  text-align: center !important;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25) !important;
  transition: var(--transition-normal) !important;
}

.stat-card-3d:hover {
  transform: translateY(-6px) scale(1.03) !important;
  border-color: #34d399 !important;
  box-shadow: 0 25px 50px rgba(52, 211, 153, 0.35) !important;
}

.stat-number {
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  color: #38bdf8 !important;
  line-height: 1.1 !important;
  margin-bottom: 0.35rem !important;
  text-shadow: 0 2px 10px rgba(56, 189, 248, 0.4) !important;
}

.stat-label {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.testimonial-card-3d {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Offer Section ($1,500 Package Box)
   -------------------------------------------------------------------------- */
.offer-section {
  background: #f8fafc;
}

.offer-card-3d {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 2px solid var(--clr-brand-teal);
  box-shadow: 0 25px 60px -15px rgba(13, 148, 136, 0.2);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #ffffff;
  padding: 0.45rem 1.6rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.35);
  white-space: nowrap;
}

.offer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.offer-price-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-price-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.offer-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.offer-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--clr-text-secondary);
  line-height: 1.45;
}

.offer-feature-item svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-box-3d {
  background: #f0fdf4;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  text-align: center;
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #047857;
  margin-bottom: 0.5rem;
}

.guarantee-desc {
  font-size: 0.95rem;
  color: #065f46;
  line-height: 1.5;
}

/* Quotable AI Summary Paragraph Box for LLMs & Answer Engines */
.ai-summary-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: 2px solid #0d9488;
  border-radius: 16px;
  padding: 1.5rem 1.85rem;
  margin: 2rem auto;
  max-width: var(--max-width);
  box-shadow: 0 12px 35px rgba(13, 148, 136, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.ai-summary-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #34d399 0%, #2563eb 100%);
}

.ai-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(13, 148, 136, 0.25);
  color: #38bdf8;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.ai-summary-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin: 0;
}

.ai-summary-text strong {
  color: #34d399;
  font-weight: 800;
}

/* 6-Card Verified Testimonial Grid */
.testimonials-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.testimonial-card-3d-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card-3d-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: #10b981;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.t-stat-badge {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.t-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.t-quote {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.t-user-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.t-avatar-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.t-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.t-role {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* Footer WhatsApp Button High-Contrast Overrides */
.footer-wa-btn {
  background: #25d366 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  padding: 0.75rem 1.4rem !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
  border: 1.5px solid #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
  white-space: nowrap !important;
}

.footer-wa-btn:hover {
  background: #1da851 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6) !important;
}

.footer-dev-guarantee {
  background: rgba(30, 41, 59, 0.95) !important;
  border: 1.5px solid rgba(52, 211, 153, 0.4) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.5rem !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-dev-guarantee h4 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.footer-dev-guarantee p {
  font-size: 0.85rem !important;
  color: #cbd5e1 !important;
  line-height: 1.5 !important;
}

.footer-dev-guarantee .btn-whatsapp {
  background: linear-gradient(180deg, #34d399 0%, #25d366 50%, #059669 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}



