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

:root {
  --primary: #1e293b;
  /* Deep Slate */
  --primary-light: #334155;
  --action: #f59e0b;
  /* Amber/Orange */
  --action-hover: #d97706;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--primary);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* Glassmorphism */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* 3D Hover Effect */
.hover-3d {
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hover-3d:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
  box-shadow: var(--shadow-lg);
}

/* Sticky Mobile Banner */
.mobile-tap-to-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--action);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mobile-tap-to-call {
    display: none;
  }
}

/* Layout Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr 350px;
  }
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .main-nav.active {
    display: flex !important;
  }
}

/* Branded Sidebar */
.branded-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--action);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
details {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

details:hover {
  border-color: var(--action);
  box-shadow: var(--shadow-md);
}

summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: var(--primary);
}

summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--action);
  transition: var(--transition);
}

details[open] summary::after {
  transform: rotate(180deg);
}

summary:hover {
  background: #f8fafc;
}

details[open] summary {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

details .content {
  padding: 1.5rem;
  background: var(--white);
  color: var(--primary-light);
  line-height: 1.7;
}

/* Trust Modules */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.trust-item i {
  font-size: 2rem;
  color: var(--action);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--action);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--action-hover);
  transform: translateY(-2px);
}