:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #b45309;
  --accent-hover: #92400e;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.1rem;
  background-image: radial-gradient(rgba(180, 83, 9, 0.03) 1px, transparent 0), radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus-visible {
  top: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header & Nav */
header {
  background-color: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

.logo-img {
  width: 45px;
  height: 45px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #cbd5e1;
  font-weight: 500;
}

nav a:hover, nav a.active {
  color: white;
  border-bottom: 2px solid var(--accent);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-light);
  padding: 1rem;
  gap: 1rem;
}

.mobile-nav a {
  color: white;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-main);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero h1 {
  color: white;
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.hero p {
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  color: #94a3b8;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white !important;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

/* Statistics Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.stat-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-top: 4px solid var(--accent);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* How It Works & Features */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(180, 83, 9, 0.1);
  font-family: var(--font-title);
}

.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 4rem 0;
}

.feature-img {
  flex: 1;
  border-radius: 12px;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-content {
  flex: 1;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Services Page & Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 2rem 0;
}

.service-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-info {
  padding: 2rem;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.recommended {
  border: 3px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: white;
  padding: 6px 20px;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1.5rem 0;
  font-family: var(--font-title);
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.price-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-card ul li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Contact & Forms */
.form-section {
  background: var(--primary-light);
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem 0;
}

.form-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.main-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-group checkbox {
  margin-right: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Contact Details Page */
.contact-layout {
  display: flex;
  gap: 4rem;
  margin: 3rem 0;
}

.contact-info {
  flex: 1;
}

.contact-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  min-height: 350px;
}

/* Trust Layer (Global) */
.trust-layer {
  background-color: #f1f5f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-layer h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-layer p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: #94a3b8;
  padding: 3rem 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #cbd5e1;
}

.footer-nav a:hover {
  color: white;
}

.footer-company-info {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-secondary {
  background: transparent;
  color: white !important;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary) !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .stats-grid, .pricing-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-block, .contact-layout {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .stats-grid, .pricing-grid, .steps-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}