/* ==========================================================================
   Aesthetic & Gradient Enhancement Theme for Solusi Kuliah UT
   Font: Plus Jakarta Sans (Google Fonts)
   Palette: Rich Modern Gradients, Glassmorphism, Ambient Glow, High Visual Hierarchy
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700;1,800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0d9488 0%, #0284c7 50%, #6366f1 100%);
  --grad-teal-cyan: linear-gradient(135deg, #0f766e 0%, #0d9488 40%, #0284c7 100%);
  --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 50%, #0f766e 100%);
  --grad-amber: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --grad-hero: linear-gradient(155deg, #040812 0%, #091527 45%, #052226 100%);
  --grad-dark-card: linear-gradient(145deg, #0b111e 0%, #111e33 60%, #0c2b2f 100%);
  --grad-card-header: linear-gradient(135deg, #090e17 0%, #0f2030 55%, #0a332f 100%);
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --grad-surface-subtle: linear-gradient(140deg, #f0fdfa 0%, #f8fafc 60%, #f1f5f9 100%);
  
  /* Shadows & Glows */
  --glow-teal: 0 16px 40px -10px rgba(13, 148, 136, 0.35);
  --glow-emerald: 0 16px 40px -10px rgba(16, 185, 129, 0.4);
  --glow-cyan: 0 16px 40px -10px rgba(6, 182, 212, 0.35);
  --card-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --card-shadow-hover: 0 24px 50px -12px rgba(13, 148, 136, 0.22), 0 8px 24px -4px rgba(15, 23, 42, 0.06);
}

/* 1. Global Typography Reset to Plus Jakarta Sans */
*, *::before, *::after {
  font-family: var(--font-sans) !important;
}

html {
  font-family: var(--font-sans) !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans) !important;
  color: #0f172a;
  letter-spacing: -0.012em;
  background-color: #fafbfc;
}

/* Typography Hierarchy & Scales */
h1, .h1 {
  letter-spacing: -0.04em !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
}

h2, .h2 {
  letter-spacing: -0.035em !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

h3, .h3 {
  letter-spacing: -0.025em !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

h4, h5, h6 {
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

p {
  line-height: 1.7 !important;
  letter-spacing: -0.01em;
}

/* 2. Text Gradient Utilities */
.text-gradient-hero {
  background: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 50%, #a5b4fc 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 45%, #0284c7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 60%, #14b8a6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.text-gradient-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

/* 3. Hero Section Aesthetic */
/* ==========================================================================
   3. Bright & Aesthetic Modern Hero Section
   ========================================================================== */
#beranda {
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 35%, #f8fafc 70%, #f5f3ff 100%) !important;
  position: relative;
  overflow: hidden;
}

#beranda::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16) 0%, rgba(56, 189, 248, 0.1) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

#beranda::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

/* Hero Typography */
#beranda h1 {
  color: #020617 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
}

#beranda p {
  color: #475569 !important;
  line-height: 1.65 !important;
}

/* Hero Badge */
.hero-pill-badge {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%) !important;
  border: 1.5px solid rgba(20, 184, 166, 0.45) !important;
  box-shadow: 0 2px 10px rgba(20, 184, 166, 0.15) !important;
  color: #0f766e !important;
  font-weight: 850 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* High-Contrast Hero CTA Buttons (Zero washed out / kabur) */
.btn-hero-primary {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #0d9488 100%) !important;
  color: #ffffff !important;
  font-weight: 850 !important;
  font-size: 1rem !important;
  padding: 0.95rem 1.75rem !important;
  border-radius: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  box-shadow: 0 10px 25px -4px rgba(16, 185, 129, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 16px 35px -4px rgba(16, 185, 129, 0.6) !important;
  color: #ffffff !important;
}

.btn-hero-secondary {
  background: #ffffff !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 0.95rem 1.75rem !important;
  border-radius: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  border: 1.5px solid #cbd5e1 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-hero-secondary:hover {
  background: #f0fdfa !important;
  border-color: #14b8a6 !important;
  color: #0f766e !important;
  transform: translateY(-2px) scale(1.01) !important;
}

/* Smartphone Mockup Body & Screen */
.phone-mockup-frame {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  border: 10px solid #0f172a !important;
  border-radius: 3rem !important;
  box-shadow: 0 30px 80px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  overflow: hidden !important;
}

/* Ensure Hero Text and Badges are 100% Solid & Crisp */
#beranda strong {
  color: #020617 !important;
}


/* 4. Section Headers & Eyebrows */
section {
  position: relative;
}

/* Eyebrow Tags */
p.text-xs.font-black.uppercase.tracking-\[0\.12em\],
p.text-xs.font-black.uppercase.tracking-\[0\.1em\],
span.text-xs.font-black.uppercase.tracking-\[0\.12em\] {
  letter-spacing: 0.14em !important;
  font-weight: 850 !important;
}

/* 5. Package Cards (#layanan) */
#layanan {
  background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 60%, #fafbfc 100%) !important;
}

#layanan article {
  background: var(--grad-surface) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 1.8rem !important;
  box-shadow: var(--card-shadow) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

#layanan article:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(20, 184, 166, 0.4) !important;
  box-shadow: var(--card-shadow-hover) !important;
}

#layanan article > div:first-child {
  background: var(--grad-card-header) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Promo Pill Badge */
#layanan article span.text-teal-300 {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(14, 165, 233, 0.25) 100%) !important;
  border: 1px solid rgba(45, 212, 191, 0.4) !important;
  color: #5eead4 !important;
  padding: 3px 10px !important;
  border-radius: 9999px !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em !important;
}

/* Price Box */
#layanan article .rounded-2xl.bg-slate-50 {
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 60%, #f1f5f9 100%) !important;
  border: 1px solid rgba(153, 246, 228, 0.6) !important;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.02);
  padding: 1.25rem 1.4rem !important;
}

#layanan article .text-3xl.font-black,
#layanan article .sm\:text-4xl.font-black {
  letter-spacing: -0.045em !important;
  color: #042f2e !important;
  font-weight: 900 !important;
}

#layanan article p.text-xs.font-black.text-teal-700 {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%) !important;
  border: 1px solid rgba(20, 184, 166, 0.3) !important;
  color: #0f766e !important;
  padding: 3px 10px !important;
  border-radius: 9999px !important;
  display: inline-block !important;
  font-weight: 850 !important;
}

/* Feature Checkmarks */
#layanan article .rounded-full.bg-emerald-100 {
  background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%) !important;
  color: #065f46 !important;
  box-shadow: 0 2px 6px -1px rgba(16, 185, 129, 0.25);
}

/* Card CTA Button */
#layanan article a.bg-slate-950,
#layanan article a.bg-teal-700 {
  background: var(--grad-card-header) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#layanan article a.bg-slate-950:hover,
#layanan article a.bg-teal-700:hover {
  background: var(--grad-teal-cyan) !important;
  box-shadow: var(--glow-teal) !important;
  transform: translateY(-2px) !important;
}

/* 6. Proof of Work & Moodle Submission Status Section (Bukti Nilai / Hasil) */
#bukti-hasil, #bukti-nilai {
  background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%) !important;
}

/* Modernize Moodle Submission Cards */
article.bg-white[class*="[font-family:Arial"] {
  font-family: var(--font-sans) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: var(--card-shadow) !important;
  background: #ffffff !important;
  border-radius: 1.5rem !important;
  transition: all 0.3s ease;
}

article.bg-white[class*="[font-family:Arial"]:hover {
  box-shadow: var(--card-shadow-hover) !important;
  border-color: rgba(20, 184, 166, 0.35) !important;
}

/* Submission Status Table Overhaul */
.border-\[\#d4d4d4\] {
  border-color: #e2e8f0 !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px -1px rgba(15, 23, 42, 0.04) !important;
}

.border-b.border-\[\#d4d4d4\] {
  border-bottom-color: #edf2f7 !important;
}

/* Status Green Pills in Table */
.bg-\[\#d1efcf\] {
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%) !important;
  color: #065f46 !important;
  font-weight: 750 !important;
}

.bg-\[\#f4f4f4\] {
  background: #f8fafc !important;
  color: #334155 !important;
}

.bg-\[\#eeeeee\] {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
}

/* Similarity and AI Score Badges */
span:contains("Similarity Score"),
span[class*="bg-teal-50"][class*="text-teal-800"] {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%) !important;
  border: 1px solid rgba(20, 184, 166, 0.4) !important;
  color: #0f766e !important;
  font-weight: 850 !important;
  border-radius: 9999px !important;
  padding: 4px 12px !important;
  box-shadow: 0 2px 6px -1px rgba(20, 184, 166, 0.15);
}

span[class*="bg-slate-100"][class*="text-slate-700"] {
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%) !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  font-weight: 800 !important;
  border-radius: 9999px !important;
  padding: 4px 12px !important;
}

/* 7. Testimonial Tabs */
[data-tab-btn] {
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  transition: all 0.28s ease !important;
}

[data-tab-btn].bg-teal-700 {
  background: var(--grad-teal-cyan) !important;
  box-shadow: var(--glow-teal) !important;
  border: none !important;
}

/* 8. Chat Testimonials Gallery */
div[role="region"][aria-label="Galeri chat pelanggan"] article {
  border-radius: 1.5rem !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: var(--card-shadow) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: #ffffff !important;
}

div[role="region"][aria-label="Galeri chat pelanggan"] article:hover {
  transform: translateY(-6px) scale(1.015) !important;
  border-color: rgba(20, 184, 166, 0.45) !important;
  box-shadow: var(--card-shadow-hover) !important;
}

/* 9. Bukti Nilai Grades Slider - Rich Gradient Card & Border with generous padding */
div[role="region"][aria-label="Galeri testimoni nilai"] > div {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%) !important;
  border: 2px solid rgba(20, 184, 166, 0.3) !important;
  border-radius: 2.2rem !important;
  padding: 1.5rem !important;
  box-shadow: 0 20px 50px -12px rgba(13, 148, 136, 0.18), 0 4px 16px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (min-width: 640px) {
  div[role="region"][aria-label="Galeri testimoni nilai"] > div {
    padding: 1.75rem !important;
  }
}

div[role="region"][aria-label="Galeri testimoni nilai"] > div:hover {
  border-color: rgba(20, 184, 166, 0.6) !important;
  box-shadow: 0 28px 65px -12px rgba(13, 148, 136, 0.28) !important;
  transform: translateY(-5px) !important;
}

/* Ensure Program Studi and Semester headers are well away from the edge */
div[role="region"][aria-label="Galeri testimoni nilai"] article > div:first-child {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  padding-top: 0.25rem !important;
  margin-bottom: 0.85rem !important;
}

/* 10. Steps & Cara Order */
#cara-order .rounded-full.bg-teal-700,
#cara-order .rounded-full.bg-slate-900 {
  background: var(--grad-teal-cyan) !important;
  box-shadow: var(--glow-teal) !important;
  color: #ffffff !important;
  font-weight: 850 !important;
}

/* 11. FAQ Accordion Aesthetics */
#faq details {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1.25rem !important;
  box-shadow: 0 2px 6px -1px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.28s ease !important;
}

#faq details[open] {
  border-color: rgba(20, 184, 166, 0.45) !important;
  box-shadow: 0 12px 30px -8px rgba(13, 148, 136, 0.15) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%) !important;
}

#faq summary {
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

/* 12. Floating WhatsApp & CTA Badges */
.fixed.bottom-6.right-6 a,
a[href*="wa.me"].fixed {
  background: var(--grad-emerald) !important;
  box-shadow: 0 16px 40px -8px rgba(16, 185, 129, 0.6) !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 16px 40px -8px rgba(16, 185, 129, 0.6); }
  100% { transform: scale(1.05); box-shadow: 0 22px 50px -6px rgba(16, 185, 129, 0.8); }
}

/* 13. Header Styling */
header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.08) !important;
}

header nav a {
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
  transition: all 0.2s ease !important;
}

header nav a:hover {
  color: #0f766e !important;
  background: rgba(240, 253, 250, 0.8) !important;
}

/* Header WhatsApp Pill */
header a[href*="wa.me"] {
  background: var(--grad-teal-cyan) !important;
  box-shadow: 0 6px 18px -4px rgba(13, 148, 136, 0.4) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.25s ease !important;
}

header a[href*="wa.me"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-teal) !important;
}

/* 14. Bright & Aesthetic Modern Footer */
footer {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f0fdfa 100%) !important;
  border-top: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

footer h3, footer h4, footer p.font-black {
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
  font-weight: 850 !important;
}

footer p {
  color: #475569 !important;
}

footer a {
  color: #475569 !important;
  transition: all 0.2s ease !important;
}

footer a:hover {
  color: #0f766e !important;
}

footer .text-white {
  color: #0f172a !important;
}

footer .text-slate-300,
footer .text-slate-400 {
  color: #64748b !important;
}

footer .text-slate-500,
footer .text-slate-600 {
  color: #64748b !important;
}

footer .border-white\/10 {
  border-color: #e2e8f0 !important;
}

footer .bg-white\/5 {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

footer .bg-white\/5:hover {
  background-color: #f0fdfa !important;
  color: #0f766e !important;
  border-color: #99f6e4 !important;
}

footer button.hover\:text-white:hover {
  color: #0f766e !important;
}

footer a.bg-emerald-600 {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0f766e 100%) !important;
  box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.35) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer a.bg-emerald-600:hover {
  box-shadow: 0 12px 28px -4px rgba(16, 185, 129, 0.5) !important;
  transform: translateY(-2px);
}


/* ==========================================================================
   Testimoni Nilai (.grade-screen) Gradient & Border Enhancements
   ========================================================================== */
#bukti-nilai {
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 50%, #f8fafc 100%) !important;
}

.grade-screen {
  border: 2.5px solid rgba(20, 184, 166, 0.35) !important;
  border-radius: 1.8rem !important;
  box-shadow: 0 24px 60px -15px rgba(13, 148, 136, 0.22), 0 4px 20px -2px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: #ffffff !important;
}

.grade-screen:hover {
  border-color: rgba(20, 184, 166, 0.6) !important;
  box-shadow: 0 30px 70px -15px rgba(13, 148, 136, 0.3), 0 0 0 1px rgba(20, 184, 166, 0.2) !important;
  transform: translateY(-4px);
}

.grade-screen header {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 45%, #0284c7 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px -4px rgba(13, 148, 136, 0.4);
}

/* Score Pill Badge: Glowing Aesthetic Emerald Gradient */
.grade-screen span[aria-label*="Nilai"],
.grade-screen .rounded-full.bg-\[radial-gradient {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0f766e 100%) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  box-shadow: 0 6px 16px -2px rgba(16, 185, 129, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.4) !important;
  border-radius: 9999px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
}

/* Course Rows Hover & Dividers */
.grade-screen .border-b.border-slate-100 {
  border-bottom-color: #f1f5f9 !important;
  transition: all 0.2s ease !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  border-radius: 1rem !important;
}

.grade-screen .border-b.border-slate-100:hover {
  background-color: rgba(240, 253, 250, 0.75) !important;
}

.grade-screen .border-b.border-slate-100 svg {
  color: #0f766e !important;
}

/* Grade Screen Category Badge (Tuton) */
#bukti-nilai span.bg-teal-50.text-teal-700 {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%) !important;
  border: 1px solid rgba(20, 184, 166, 0.4) !important;
  color: #0f766e !important;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.15) !important;
  font-weight: 850 !important;
}


/* ==========================================================================
   Hero 2-Column Unified Layout (Guaranteed Side-by-Side on Desktop/Laptop)
   ========================================================================== */
.hero-container-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  align-items: center !important;
}

@media (min-width: 960px) {
  .hero-container-grid {
    grid-template-columns: 1.12fr 0.88fr !important;
    gap: 2.5rem !important;
  }
}

@media (min-width: 1200px) {
  .hero-container-grid {
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 3.5rem !important;
  }
}

/* Compact Phone Mockup sizing so it fits in one screen */
.phone-mockup-frame {
  max-width: 380px !important;
}
