﻿/* Lertatyx Premium Design CSS Stylesheet 2026 */

:root {
  --bg-dark: #0A0D14;
  --bg-card: #121824;
  --bg-card-hover: #182030;
  --primary: #FF5E5B;
  --primary-hover: #e04f4c;
  --accent: #E8C547;
  --text-main: #F0F6FC;
  --text-muted: #8B949E;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-title: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-shadow: 0 0 25px rgba(255, 94, 91, 0.2);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--text-main);
  padding: 15px 25px;
  z-index: 99999;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Custom Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.text-center {
  text-align: center;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-area img {
  width: 40px;
  height: 40px;
}
.logo-area span {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 24px;
  color: var(--text-main);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary);
}
.btn-cta {
  background: linear-gradient(135deg, var(--primary), #FF7B54);
  color: var(--text-main) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  box-shadow: var(--glow-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 94, 91, 0.4);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 28px;
  cursor: pointer;
}

/* UNIQUE GRAPHIC EFFECT: Glass Neon Cards & Floating Mesh Gradient Glow */
.glow-bg {
  position: relative;
}
.glow-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.1) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
.glow-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 94, 91, 0.1) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.card-glow-border {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
.card-glow-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--accent), transparent 60%);
  animation: rotateGlow 8s linear infinite;
  z-index: 1;
}
.card-glow-border img {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  display: block;
  width: 100%;
  height: auto;
}
@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
  padding: 100px 20px 80px 20px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 94, 91, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
}
.hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.badge {
  display: inline-block;
  background: rgba(232, 197, 71, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 197, 71, 0.2);
}
.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
}
.hero-actions {
  display: flex;
  gap: 20px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #FF7B54);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--glow-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 94, 91, 0.45);
}
.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: background 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Stats Section */
.stats-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px 20px;
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Social Proof */
.social-proof-section {
  background: var(--bg-dark);
}
.section-subtitle {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 600;
}
.brand-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.6;
  margin-bottom: 70px;
}
.brand-item {
  font-size: 22px;
  font-family: var(--font-title);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-rating {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 13px;
}
.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Technology Grid */
.tech-infrastructure-section h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 20px;
}
.section-lead {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: var(--text-muted);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}
.tech-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}
.tech-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 15px;
}
.tech-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Features Section (Asymmetric) */
.features-section {
  background: var(--bg-dark);
}
.features-asymmetry {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.features-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.features-text h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 25px;
}
.features-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}
.features-bullets {
  list-style: none;
}
.features-bullets li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.features-bullets li i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 3px;
}
.features-bullets li strong {
  display: block;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 4px;
}
.features-bullets li p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Services Preview */
.services-preview-section h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 10px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: var(--bg-card);
  padding: 45px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}
.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 25px;
}
.service-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 25px;
}
.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover {
  text-decoration: underline;
}

/* Pricing Section */
.pricing-section h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 10px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  padding: 50px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.recommended {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(232, 197, 71, 0.15);
}
.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.price {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 15px;
}
.price span {
  font-size: 16px;
  color: var(--text-muted);
}
.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  min-height: 45px;
}
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
}
.price-list li {
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.price-list li i.fa-check {
  color: var(--primary);
}
.price-list li i.fa-xmark {
  color: var(--text-muted);
  opacity: 0.5;
}
.btn-pricing {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}
.pricing-card.recommended .btn-pricing {
  background: linear-gradient(135deg, var(--primary), #FF7B54);
  border: none;
}
.pricing-card.recommended .btn-pricing:hover {
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}
.btn-pricing:hover {
  background: rgba(255,255,255,0.08);
}

/* Lead Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 60px;
  align-items: center;
}
.form-info h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 20px;
}
.form-info p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}
.form-contact-details p {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-main);
}
.form-contact-details i {
  color: var(--primary);
}
.form-container-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group-checkbox {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.form-group-checkbox input {
  margin-top: 4px;
  accent-color: var(--primary);
}
.form-group-checkbox label {
  font-size: 13px;
  color: var(--text-muted);
}
.form-group-checkbox a {
  color: var(--primary);
  text-decoration: none;
}
.form-group-checkbox a:hover {
  text-decoration: underline;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #FF7B54);
  color: var(--text-main);
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--glow-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 94, 91, 0.4);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Workflow Section */
.workflow-section h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 10px;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.step-card {
  background: var(--bg-card);
  padding: 40px 25px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}
.step-num {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 15px;
  font-weight: 500;
}
.step-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  margin-bottom: 15px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Trust Layer Section */
.trust-layer-section {
  background: var(--bg-dark);
}
.trust-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed var(--border-color);
  padding: 40px;
  border-radius: 12px;
}
.trust-box h3 {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-box h3 i {
  color: var(--accent);
}
.trust-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}
.trust-disclaimer {
  font-style: italic;
  font-size: 13px !important;
}
.trust-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.trust-links a:hover {
  text-decoration: underline;
}

/* Footer Style */
footer {
  background: #06080d;
  border-top: 1px solid var(--border-color);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .logo-area {
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}
.footer-links-group h4 {
  font-family: var(--font-title);
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-links-group a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-links-group a:hover {
  color: var(--primary);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  background: rgba(18, 24, 36, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  z-index: 10000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}
.cookie-content p {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.5;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.btn-cookie-accept {
  background: var(--primary);
  color: var(--text-main);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-info-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}
.cookie-info-link:hover {
  text-decoration: underline;
}

/* About / Services Sub-pages Specific */
.about-hero, .services-hero, .faq-hero, .contact-hero {
  padding: 80px 20px;
}
.about-hero h1, .services-hero h1, .faq-hero h1, .contact-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 15px;
}
.about-story-section {
  padding: 80px 20px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.story-text h2 {
  font-family: var(--font-title);
  font-size: 26px;
  margin-bottom: 20px;
}
.story-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.about-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 30px;
  border-radius: 0 12px 12px 0;
  margin-top: 30px;
}
.about-quote p {
  font-style: italic;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.about-quote span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Services Page Detailed List */
.services-list-section {
  padding: 40px 20px 80px 20px;
}
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.service-detail-item.inverse {
  grid-template-columns: 1.2fr 1fr;
}
.service-detail-item.inverse .service-detail-img {
  order: 2;
}
.service-detail-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-detail-text h2 {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 20px;
}
.service-detail-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 25px;
}
.bullet-list-pro {
  list-style: none;
}
.bullet-list-pro li {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
}
.bullet-list-pro li i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
}

/* FAQ Details Accordion */
.faq-content-section {
  padding: 40px 20px 80px 20px;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  border-color: var(--primary);
}
.faq-question {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 5px 15px 15px 15px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
}

/* Contact Grid & Details */
.contact-details-section {
  padding: 40px 20px 80px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info-block h2, .contact-form-block h2 {
  font-family: var(--font-title);
  font-size: 26px;
  margin-bottom: 25px;
}
.info-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 25px;
}
.info-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 i {
  color: var(--accent);
}
.info-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.map-container-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Legal Documents Template Styling */
.container-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}
.legal-page h1 {
  font-family: var(--font-title);
  font-size: 32px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 15px;
}
.legal-page h2 {
  font-family: var(--font-title);
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--accent);
}
.legal-page p, .legal-page ul {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.legal-page ul {
  padding-left: 20px;
}
.legal-page ul li {
  margin-bottom: 10px;
}

/* Centered Success/Error Layouts */
.clean-centered-layout {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.centered-box-wrapper {
  width: 100%;
  max-width: 550px;
}
.thank-you-card, .error-404-card {
  background: var(--bg-card);
  padding: 50px 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
}
.icon-success {
  font-size: 60px;
  color: var(--accent);
  margin-bottom: 25px;
}
.icon-error {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 25px;
}
.thank-you-card h1, .error-404-card h1 {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 15px;
}
.error-404-card h1 {
  font-size: 72px;
  margin-bottom: 5px;
  color: var(--primary);
}
.thank-you-card p, .error-404-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Animation Utilities */
.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints (Mobile First) */
@media (max-width: 991px) {
  .hero-container, .story-grid, .service-detail-item, .service-detail-item.inverse, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail-item.inverse .service-detail-img {
    order: 0;
  }
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials-grid, .services-grid, .pricing-grid, .workflow-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.recommended {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 75px;
    right: 0;
    width: 280px;
    height: calc(100vh - 75px);
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links .btn-cta {
    width: 100%;
    text-align: center;
  }
  .brand-logos {
    gap: 30px;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
}