@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  padding-top: 5rem;
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Utility Classes */
.transition-smooth {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-gold {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glow-hover {
  position: relative;
  transition: all 0.3s ease;
}

.glow-hover:hover {
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

/* Animations */
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -50px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(50px, 50px) scale(1.05); }
}

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

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

.animate-blob {
  animation: blob 7s infinite;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Typography */
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-7xl {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Colors */
.text-primary-600 { color: #0284c7; }
.text-primary-700 { color: #0369a1; }
.bg-primary-50 { background-color: #f0f9ff; }
.bg-primary-600 { background-color: #0284c7; }
.bg-primary-700 { background-color: #0369a1; }

.text-gray-900 { color: #111827; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-white { color: #ffffff; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-green-600 { background-color: #16a34a; }

/* Gradient */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-50 { --tw-gradient-stops: #f8fafc; }
.from-blue-50 { --tw-gradient-stops: #eff6ff; }
.from-primary-50 { --tw-gradient-stops: #f0f9ff; }
.from-primary-600 { --tw-gradient-stops: #0284c7; }
.from-gray-900 { --tw-gradient-stops: #111827; }
.from-blue-500 { --tw-gradient-stops: #3b82f6; }

.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff; }
.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937; }

.to-white { --tw-gradient-stops: var(--tw-gradient-from), #ffffff; }
.to-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8; }
.to-primary-700 { --tw-gradient-stops: var(--tw-gradient-from), #0369a1; }
.to-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827; }
.to-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff; }

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary-700 { --tw-gradient-stops: #0369a1; }
.to-primary-900 { --tw-gradient-stops: var(--tw-gradient-from), #0c4a6e; }

.from-blue-600 { --tw-gradient-stops: #2563eb; }
.to-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5; }

.bg-clip-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

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

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-20 { padding-top: 5rem; }
.pb-8 { padding-bottom: 2rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.pt-8 { padding-top: 2rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }

.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-px { height: 1px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }

/* Border */
.border {
  border: 1px solid #e5e7eb;
}

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
  min-width: 48px;
}

@media (max-width: 640px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}

.btn-primary {
  background: linear-gradient(to right, #0284c7, #0369a1);
  color: white;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Shadow */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }

/* Margin Auto */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }

/* Z-index */
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }

/* Responsiveness */
.sm-hidden {
  display: none;
}

/* Premium Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1001;
}

nav .logo:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

nav .logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.5rem;
  position: relative;
}

.nav-menu a:not(.nav-cta)::before {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-menu a:not(.nav-cta):hover {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.06);
}

.nav-menu a:not(.nav-cta):hover::before {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.7rem 1.75rem !important;
  border-radius: 0.625rem;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  margin-left: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 2rem;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  
  nav .logo img {
    height: 3rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    justify-content: flex-start;
  }
  
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Stack all inline multi-col grids */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr 1fr"],
  div[style*="grid-template-columns: repeat(3"],
  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  nav .nav-links.active a {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}

/* Footer */
footer {
  background: linear-gradient(to bottom right, #1f2937, #111827, #1f2937);
  color: #d1d5db;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.35rem 0.25rem;
}

footer a:hover {
  color: #0284c7;
  text-decoration: underline;
}

.footer-section {
  flex: 1;
}

.footer-section h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-section ul li a {
  color: #d1d5db;
  padding: 0.4rem 0;
  display: block;
}

.footer-section ul li a:hover {
  color: #0284c7;
  padding-left: 0.25rem;
}

.footer-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  height: 3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-section h3 {
    font-size: 0.95rem;
  }

  .footer-section ul li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

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

@media (max-width: 640px) {
  .footer-section h3 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .footer-section ul li {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .footer-section ul li a {
    padding: 0.35rem 0;
  }

  footer {
    padding: 1.5rem 1rem !important;
  }

  footer .max-w-7xl {
    padding: 0 !important;
  }
}

/* Form Elements */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Section */
.section {
  padding: 5rem 1rem;
}

.section-dark {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInBlur {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(2, 132, 199, 0.5);
  }
}

/* Card Enhancement */
.service-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #2563eb);
  border-radius: 1rem 1rem 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

/* Gradient Text Animation */
.gradient-text-animate {
  background: linear-gradient(90deg, #0284c7, #2563eb, #4f46e5, #0284c7);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0284c7;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(2, 132, 199, 0.15);
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
}

/* Enhanced Step Counter */
.step-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  position: relative;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-counter::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step-counter:hover::after {
  opacity: 0.2;
}

/* Stat Counter */
.stat-counter {
  transition: all 0.3s ease;
}

.stat-counter:hover {
  transform: scale(1.05);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.stat-counter:hover .stat-value {
  color: #2563eb;
  transform: scale(1.1);
}

/* Links */
a {
  color: #0284c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0369a1;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hidden-mobile {
    display: none;
  }

  .py-20 {
    padding: 2rem 0;
  }

  .gap-12 {
    gap: 1.5rem;
  }

  .space-y-2 > * + * {
    margin-top: 0.5rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .max-w-7xl {
    padding: 0 0.75rem;
  }

  .max-w-4xl {
    padding: 0 0.75rem;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .max-w-7xl {
    padding: 0 0.75rem;
  }

  .max-w-4xl {
    padding: 0 0.75rem;
  }

  .px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .px-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-8 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .py-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-4 {
    padding: 0.75rem;
  }

  .p-6 {
    padding: 1rem;
  }

  .p-8 {
    padding: 1.5rem;
  }

  .p-12 {
    padding: 1.5rem;
  }

  .gap-3 {
    gap: 0.5rem;
  }

  .gap-4 {
    gap: 0.75rem;
  }

  .gap-6 {
    gap: 1rem;
  }

  .gap-8 {
    gap: 1rem;
  }

  .gap-12 {
    gap: 1.5rem;
  }

  .mt-6 {
    margin-top: 1rem;
  }

  .mt-8 {
    margin-top: 1.5rem;
  }

  .mb-4 {
    margin-bottom: 0.75rem;
  }

  .mb-6 {
    margin-bottom: 1rem;
  }

  .mb-8 {
    margin-bottom: 1.5rem;
  }

  .text-lg {
    font-size: 1rem;
  }

  .text-xl {
    font-size: 1.125rem;
  }

  .flex-col {
    flex-direction: column;
  }

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

  .card {
    padding: 1.5rem;
  }

  input, select, textarea {
    padding: 0.65rem 0.85rem;
    font-size: 16px;
  }

  label {
    font-size: 0.8rem;
  }

  nav .logo {
    font-size: 1rem;
  }

  .mobile-menu-btn {
    font-size: 1.25rem;
  }

  .footer-section h3 {
    font-size: 0.95rem;
  }

  .footer-section ul li {
    font-size: 0.8rem;
  }
}

/* ===== Brand Partners — Luxury ===== */
#bpsec {
  background: linear-gradient(158deg, #08101e 0%, #0b1a30 55%, #0d1e38 100%);
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}
#bpsec::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #c9a84c 28%, #f0d47e 50%, #c9a84c 72%, transparent 95%);
}
#bpsec::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25) 50%, transparent);
}
.bp-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.bp-glow-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  top: -200px; left: -150px;
}
.bp-glow-b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(2,132,199,0.07), transparent 70%);
  bottom: -150px; right: -100px;
}
.bpsec-inner { position: relative; z-index: 1; }

/* Header */
.bphdr { text-align: center; margin-bottom: 3rem; }
.bplabel {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.9rem;
}
.bptitle {
  font-size: 2.25rem;
  font-weight: 800;
  color: #eef2f7;
  margin: 0 0 0.85rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.bpdesc {
  font-size: 0.95rem;
  color: #7a8fa8;
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}
.bprule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #f0d47e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Tabs */
.bp-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.bp-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.65rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(201,168,76,0.22);
  background: rgba(255,255,255,0.03);
  color: #7a8fa8;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.bp-tab:hover {
  border-color: rgba(201,168,76,0.55);
  color: #c9a84c;
  background: rgba(201,168,76,0.05);
}
.bp-tab.active {
  background: linear-gradient(135deg, #c9a84c, #b0893a);
  border-color: transparent;
  color: #07111e;
  font-weight: 700;
  box-shadow: 0 5px 22px rgba(201,168,76,0.32);
}

/* Panel */
.bp-panel { display: none; }
.bp-panel.active { display: block; }

/* Slider */
.bp-slider-outer {
  position: relative;
  padding: 0 3.75rem;
}
.bpswrap { overflow: hidden; }
.bpstrack {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arrow buttons */
.bparr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  background: rgba(8,16,30,0.85);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.bparr-prev { left: 0; }
.bparr-next { right: 0; }
.bparr:hover {
  background: linear-gradient(135deg, #c9a84c, #a97b2e);
  border-color: #c9a84c;
  color: #07111e;
  box-shadow: 0 6px 22px rgba(201,168,76,0.4);
  transform: translateY(calc(-50% - 2px));
}

/* Card rail item */
.bpc {
  flex: 0 0 auto;
  padding: 0 0.6rem;
  box-sizing: border-box;
}

/* Card visual body */
.bpc-body {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem 1.4rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
.bpc-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.bpc:hover .bpc-body {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1), 0 2px 10px rgba(0,0,0,0.35);
  transform: translateY(-5px);
}
.bpc:hover .bpc-body::after { opacity: 1; }
.bpc:hover .bpc-logo { border-color: rgba(201,168,76,0.35); }

/* Logo frame */
.bpc-logo {
  width: 100%;
  height: 84px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 8px 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.bpc-logo-lg { height: 100px; }

.bpc-img {
  display: block;
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bpc-fb {
  display: none;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 0.6rem;
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bpc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #eef2f7;
  margin: 0 0 0.3rem;
}
.bpc-type {
  font-size: 0.73rem;
  color: #c9a84c;
  margin: 0;
  font-weight: 500;
  opacity: 0.85;
}

/* Dot indicators */
.bp-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}
.bp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.bp-dot.active {
  background: #c9a84c;
  width: 22px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* Trading solo */
.bp-trade-wrap {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.bpc-solo { width: 220px; }
.bpc-badge {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.3rem 0.85rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .bptitle { font-size: 1.75rem; }
  .bp-slider-outer { padding: 0 3rem; }
  .bparr { width: 2.25rem; height: 2.25rem; }
}
