/* ============================================= */
/* PROFESSIONAL DESIGN SYSTEM - Tonio Service  */
/* Modern, Clean, Elegant                       */
/* ============================================= */

/* CSS Variables for Consistent Design */
:root {
  /* Primary Colors */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  /* Navy (Professional Dark Blue) */
  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #bcccdc;
  --navy-300: #9fb3c8;
  --navy-400: #829ab1;
  --navy-500: #627d98;
  --navy-600: #486581;
  --navy-700: #334e68;
  --navy-800: #243b53;
  --navy-900: #102a43;

  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Accent Colors */
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  
  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================= */
/* GLOBAL STYLES                                 */
/* ============================================= */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.6;
  background-color: #ffffff;
}

/* ============================================= */
/* TYPOGRAPHY ENHANCEMENTS                       */
/* ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

p {
  font-size: 1rem;
  line-height: 1.75;
}

.text-balance {
  text-wrap: balance;
}

/* ============================================= */
/* HERO SECTION - PREMIUM DESIGN                 */
/* ============================================= */

.hero-section,
header[role="banner"] {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 25, 47, 0.77) 0%,
    rgba(16, 42, 67, 0.72) 30%,
    rgba(30, 64, 105, 0.65) 60%,
    rgba(37, 99, 235, 0.5) 100%
  );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 170, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero-content p strong {
  color: white;
  font-weight: 600;
}

/* Hero Domain Search Box */
.hero-search-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.hero-search-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-search-box h2 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-search-box input {
  background: white;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-search-box input:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.hero-search-box button {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-search-box button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-search-box button:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-buttons .btn-white {
  background: white;
  color: var(--navy-800);
  font-weight: 700;
  padding: 1rem 2rem;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-buttons .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ============================================= */
/* BUTTONS - ELEGANT DESIGN                      */
/* ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-600);
  color: white;
}

.btn-white {
  background: white;
  color: var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ============================================= */
/* SECTIONS - CLEAN LAYOUT                       */
/* ============================================= */

section {
  position: relative;
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ============================================= */
/* CARDS - MODERN DESIGN                         */
/* ============================================= */

.card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.card-description {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================= */
/* SERVICES SECTION - ENHANCED DESIGN           */
/* ============================================= */

#services {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 50%, #ffffff 100%);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

#services .section-header {
  margin-bottom: 3.5rem;
}

#services .section-header h2 {
  position: relative;
  display: inline-block;
}

#services .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
  border-radius: var(--radius-full);
}

/* Service Cards Enhancement */
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 100% 100%, var(--primary-50) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--primary-100);
  box-shadow: 
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 40px -15px rgba(37, 99, 235, 0.12);
  transform: translateY(-6px);
}

/* Service Card Icon */
.service-card .p-3 {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.service-card .p-3::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.service-card:hover .p-3 {
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
  transform: scale(1.05);
}

.service-card:hover .p-3::before {
  opacity: 1;
}

.service-card .p-3 svg {
  transition: transform var(--transition-base);
}

.service-card:hover .p-3 svg {
  transform: scale(1.1);
}

/* Service Card Title */
.service-card h3 {
  color: var(--gray-900);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--primary-700);
}

/* Service Card Feature List */
.service-card ul {
  flex-grow: 1;
}

.service-card ul li {
  padding: 0.375rem 0;
  transition: all var(--transition-fast);
}

.service-card ul li:hover {
  padding-left: 0.25rem;
  color: var(--gray-700);
}

.service-card ul li svg {
  flex-shrink: 0;
}

/* Service Card Link */
.service-card .border-t {
  margin-top: auto;
  border-color: var(--gray-100);
}

.service-card a.text-blue-600 {
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card a.text-blue-600::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.service-card a.text-blue-600:hover::after {
  width: 100%;
}

.service-card a.text-blue-600 svg {
  transition: transform var(--transition-base);
}

.service-card a.text-blue-600:hover svg {
  transform: translateX(4px);
}

/* ============================================= */
/* SOCIAL PROOF BAR                              */
/* ============================================= */

#social-proof-bar {
  background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-500) 100%);
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================= */
/* STATISTICS SECTION                            */
/* ============================================= */

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ============================================= */
/* TESTIMONIALS                                  */
/* ============================================= */

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-content {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-700);
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================= */
/* CITIES/LOCATIONS SECTION                      */
/* ============================================= */

.city-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
}

.city-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.city-card svg {
  color: var(--primary-500);
  margin-bottom: 0.75rem;
}

.city-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.city-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================= */
/* CONTACT SECTION                               */
/* ============================================= */

#contact {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ============================================= */
/* FAQ SECTION                                   */
/* ============================================= */

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--primary-200);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================= */
/* FOOTER ENHANCEMENT                            */
/* ============================================= */

footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0a0f1a 100%);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-600), var(--emerald-500), var(--primary-600));
}

footer h3 {
  color: var(--primary-400);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

footer h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  border-radius: var(--radius-full);
}

footer a {
  color: var(--gray-400);
  transition: all var(--transition-fast);
  position: relative;
}

footer a:hover {
  color: white;
  padding-left: 4px;
}

footer ul li {
  position: relative;
  transition: all var(--transition-fast);
}

footer ul li::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width var(--transition-fast);
}

footer ul li:hover::before {
  width: 8px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary-600);
  transform: translateY(-3px);
  border-color: var(--primary-500);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Footer Contact Info Styling */
footer .flex.items-center svg {
  transition: all var(--transition-base);
}

footer .flex.items-center:hover svg {
  transform: scale(1.1);
  color: var(--primary-300);
}

/* Footer border styling */
footer .border-t,
footer .border-b {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Footer copyright section */
footer .border-t.pt-8 {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
}

/* ============================================= */
/* CTA FINAL SECTION                             */
/* ============================================= */

#final-cta {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 50%, var(--gray-50) 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--primary-200) 50%, transparent 90%);
}

#final-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
  position: relative;
}

#final-cta h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--emerald-500));
  border-radius: var(--radius-full);
}

#final-cta > div > p:first-of-type {
  color: var(--gray-600);
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.cta-box {
  background: white;
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  box-shadow: 
    0 4px 6px -1px rgba(16, 185, 129, 0.08),
    0 10px 30px -10px rgba(16, 185, 129, 0.12);
  transition: all var(--transition-base);
  position: relative;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 6px 12px -2px rgba(16, 185, 129, 0.12),
    0 15px 40px -15px rgba(16, 185, 129, 0.18);
  border-color: var(--emerald-300);
}

.cta-box .w-10 {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

#final-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

#final-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

#final-cta .btn-outline {
  border-color: var(--primary-400);
  color: var(--primary-600);
}

#final-cta .btn-outline:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

/* ============================================= */
/* ANIMATIONS                                    */
/* ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animations */
.animate-stagger > * {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Partner Logo Scroll Animation */
@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.animate-scroll-infinite {
  animation: scroll-infinite 30s linear infinite;
}

/* ============================================= */
/* RESPONSIVE ADJUSTMENTS                        */
/* ============================================= */

@media (max-width: 1024px) {
  :root {
    --section-padding: clamp(3rem, 6vw, 5rem);
  }
}

@media (max-width: 768px) {
  .hero-section,
  header[role="banner"] {
    min-height: 70vh;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* ============================================= */
/* UTILITY CLASSES                               */
/* ============================================= */

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
