﻿/* ==========================================================================
   ZYNXIMFUX Studio - High-End Broadcast & Video Blogging Studio Styles
   Target GEO: JP (Japan)
   ========================================================================== */

:root {
  --primary-navy: #0B1325;
  --navy-card: #131E36;
  --navy-card-hover: #1A2949;
  --navy-border: #233458;
  --accent-cyan: #00B4D8;
  --accent-cyan-hover: #0096B4;
  --accent-red: #E63946;
  --accent-gold: #F4A261;
  --text-light: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-light: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
  --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--primary-navy);
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus-visible {
  color: var(--accent-gold);
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-cyan { color: var(--accent-cyan); }
.text-red { color: var(--accent-red); }

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 37, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: #CBD5E1;
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), #0077B6);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
  transition: var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 90px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.12) 0%, rgba(11, 19, 37, 0) 60%),
              radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.08) 0%, rgba(11, 19, 37, 0) 50%);
  border-bottom: 1px solid var(--navy-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #FF6B6B;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.075rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-cyan), #0077B6);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--navy-border);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.trust-label {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-lg);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 19, 37, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--navy-border);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.overlay-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Header Component */
.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

/* Value Proposition / Benefits Section */
.section-padding {
  padding: 96px 0;
  border-bottom: 1px solid var(--navy-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  background: var(--navy-card-hover);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.benefit-media {
  height: 200px;
  overflow: hidden;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-media img {
  transform: scale(1.05);
}

.benefit-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.benefit-icon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.benefit-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Studio Solutions / Features Section */
.services-section {
  background: #080E1C;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent-cyan);
  background: var(--navy-card-hover);
}

.service-img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--navy-border);
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--navy-border);
  font-size: 0.775rem;
  padding: 4px 10px;
  border-radius: 6px;
  color: #CBD5E1;
}

/* How It Works Workflow */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-cyan);
  color: var(--primary-navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Social Proof & Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 26px;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* About Us & Transparency Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
}

.about-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.operator-details-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 24px;
}

.operator-details-box h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.operator-details-box p {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 4px;
  line-height: 1.6;
}

/* Lead Form Section */
.form-section {
  background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.08) 0%, rgba(11, 19, 37, 0) 70%), #080E1C;
  padding: 100px 0;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E2E8F0;
}

.form-group label .required {
  color: var(--accent-red);
  margin-left: 4px;
}

.form-control {
  background: #0B1325;
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-family: var(--font-base);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-cyan);
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-cyan), #0077B6);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
  transition: var(--transition);
  margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.6);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.privacy-reassurance {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Alert States */
.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-top: 16px;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #6EE7B7;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #FCA5A5;
}

/* Footer Section */
.site-footer {
  background: #060B14;
  padding: 70px 0 30px;
  border-top: 1px solid var(--navy-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-contact-info p {
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: #64748B;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 990;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-cyan);
  color: #0B1325;
  transform: translateY(-3px);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 19, 37, 0.98);
  border-top: 1px solid var(--navy-border);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-accept {
  background: var(--accent-cyan);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept:hover {
  background: #38BDF8;
}

.btn-decline {
  background: transparent;
  color: #94A3B8;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--navy-border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-decline:hover {
  color: #FFFFFF;
  border-color: #CBD5E1;
}

/* Legal Pages Styling */
.legal-page-header {
  padding: 60px 0 40px;
  background: #080E1C;
  border-bottom: 1px solid var(--navy-border);
}

.legal-content-wrap {
  padding: 60px 0 100px;
}

.legal-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 48px;
  color: #CBD5E1;
}

.legal-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--navy-border);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin: 24px 0 12px;
}

.legal-card p, .legal-card li {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-card ul, .legal-card ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th, .legal-table td {
  border: 1px solid var(--navy-border);
  padding: 12px 16px;
  text-align: left;
}

.legal-table th {
  background: #0B1325;
  color: #FFFFFF;
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .benefits-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid, .about-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid, .testimonials-grid, .workflow-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-img {
    width: 100%;
    height: 180px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 28px 20px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0B1325;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--navy-border);
    gap: 16px;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
}
