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

:root {
  --color-navy: #0A1F3C;
  --color-gold: #B38B59;
  --color-gold-bright: #D4AF37;
  --color-white: #FFFFFF;
  --color-grey: #F0F0F0;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --header-height: 80px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 10px 20px;
  z-index: 10000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 10px;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hovered {
  transform: scale(2);
  background: var(--color-gold-bright);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-navy);
  z-index: 1000;
  transition: all 0.3s var(--transition-smooth);
}

.header.scrolled {
  height: 65px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--color-gold);
}

.logo-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold-bright);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-gold-bright);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--color-gold-bright);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--color-gold-bright);
  box-shadow: 0 4px 15px rgba(179, 139, 89, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  color: var(--color-navy);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-navy);
  z-index: 2000;
  transition: right 0.4s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-link {
  font-size: 24px;
  color: var(--color-white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.mobile-cta {
  margin-top: 30px;
  text-align: center;
}

/* Hero Sections */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 31, 60, 0.7) 0%, rgba(10, 31, 60, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--transition-smooth) 0.3s forwards;
}

.hero-title .accent {
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--transition-smooth) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--transition-smooth) 0.7s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Urgent Contact Section */
.urgent-contact {
  background: var(--color-navy);
  padding: 40px 0;
  border-top: 1px solid rgba(179, 139, 89, 0.3);
}

.urgent-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.urgent-value {
  flex: 1;
}

.urgent-value h2 {
  font-size: 22px;
  color: var(--color-white);
  font-weight: 400;
}

.urgent-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}

.urgent-phone-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Service Snapshot */
.service-snapshot {
  background: var(--color-navy);
  padding: 80px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: 36px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

.service-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.service-icon-item {
  text-align: center;
  cursor: pointer;
  padding: 30px 15px;
  border-radius: 8px;
  transition: all 0.3s var(--transition-smooth);
}

.service-icon-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.service-icon-item:hover .icon-main {
  transform: scale(1.1);
}

.service-icon-item:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.icon-main {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  transition: transform 0.3s var(--transition-smooth);
}

.icon-main svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.service-icon-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-icon-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--transition-smooth);
}

.learn-more {
  font-size: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--transition-smooth);
}

/* Unfair Advantage */
.unfair-advantage {
  background: var(--color-grey);
  padding: 100px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.split-content {
  padding-left: 40px;
}

.split-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
}

.split-content h2 {
  font-size: 38px;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.split-content p {
  font-size: 16px;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Target Segments */
.target-segments {
  background: var(--color-navy);
  padding: 100px 0;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.segment-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid transparent;
}

.segment-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-bright);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.segment-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.segment-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.segment-card h3 {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.segment-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Detailed Services */
.detailed-services {
  padding: 100px 0;
}

.detailed-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.detailed-service:nth-child(even) .detailed-image {
  order: 2;
}

.detailed-service:nth-child(even) .detailed-content {
  order: 1;
  padding-left: 0;
  padding-right: 40px;
}

.detailed-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.detailed-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.detailed-content {
  padding-left: 40px;
}

.detailed-content h3 {
  font-size: 28px;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.detailed-content p {
  font-size: 15px;
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Process Section */
.our-process {
  background: var(--color-navy);
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.3;
}

.step-number {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-gold);
}

.process-step h4 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--color-grey);
  padding: 100px 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(10, 31, 60, 0.6);
}

/* Confidentiality Pledge */
.confidentiality-pledge {
  background: var(--color-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pledge-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.pledge-content h2 {
  font-size: 36px;
  color: var(--color-white);
  margin-bottom: 30px;
}

.pledge-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

.shield-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.1;
}

.shield-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
}

/* CTA Section */
.cta-section {
  background: var(--color-gold);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 30px;
}

.cta-section .btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 16px 40px;
  font-size: 14px;
}

.cta-section .btn-primary:hover {
  background: var(--color-navy);
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  background: var(--color-navy);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.contact-item {
  text-align: center;
}

.contact-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-gold);
  fill: none;
  margin-bottom: 15px;
}

.contact-item h4 {
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-gold);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-gold-bright);
}

/* Footer */
.footer {
  background: var(--color-navy);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo-text {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h5 {
  font-size: 14px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--color-gold-bright);
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
  display: flex;
  gap: 15px;
}

.footer-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

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

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
}

/* Form Styles */
.form-section {
  background: var(--color-grey);
  padding: 100px 0;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.form-info h3 {
  font-size: 28px;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.form-info p {
  font-size: 15px;
  color: var(--color-navy);
  line-height: 1.8;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--color-grey);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(179, 139, 89, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* FAQ Accordion */
.faq-section {
  background: var(--color-navy);
  padding: 100px 0;
}

.accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h4 {
  font-size: 16px;
  color: var(--color-gold);
  font-weight: 500;
  text-align: left;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding-bottom: 25px;
}

/* About Page Specifics */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: var(--color-gold);
}

.value-card svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-gold);
  fill: none;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.7;
}

/* Differentiators */
.differentiators {
  background: var(--color-grey);
  padding: 100px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.diff-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 8px;
}

.diff-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-gold);
  fill: none;
  flex-shrink: 0;
}

.diff-item h4 {
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.diff-item p {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.team-card p {
  font-size: 14px;
  color: var(--color-gold);
}

/* Service Detail Page */
.service-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background: var(--color-navy);
}

.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-hero h1 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.service-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.service-overview {
  padding: 80px 0;
}

.service-overview-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-overview h2 {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 25px;
}

.service-overview p {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.9;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.technique-card {
  text-align: center;
  padding: 30px 20px;
}

.technique-card svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-gold);
  fill: none;
  margin-bottom: 15px;
}

.technique-card h4 {
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.technique-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.use-case-card {
  padding: 30px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

.use-case-card h4 {
  font-size: 16px;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.7;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--color-grey);
}

.map-section h2 {
  font-size: 32px;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
  background: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

/* What to Expect */
.what-to-expect {
  background: var(--color-navy);
  padding: 80px 0;
}

.what-to-expect h2 {
  font-size: 32px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 50px;
}

.expect-list {
  max-width: 800px;
  margin: 0 auto;
}

.expect-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.expect-item svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-gold);
  fill: none;
  flex-shrink: 0;
}

.expect-item h4 {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s var(--transition-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s var(--transition-smooth);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s var(--transition-smooth);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .header-inner {
    padding: 0 30px;
  }
  
  .nav-main, .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .service-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .split-content {
    padding-left: 0;
  }
  
  .split-content::before {
    display: none;
  }
  
  .segments-grid {
    grid-template-columns: 1fr;
  }
  
  .detailed-service {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .detailed-service:nth-child(even) .detailed-image,
  .detailed-service:nth-child(even) .detailed-content {
    order: unset;
  }
  
  .detailed-content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .diff-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .logo-tagline {
    font-size: 9px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .urgent-contact-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .urgent-phone {
    flex-direction: column;
  }
  
  .urgent-phone-number {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .service-icons-grid {
    grid-template-columns: 1fr;
  }
  
  .service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-icon-desc, .learn-more {
    opacity: 1;
    transform: translateY(0);
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .service-hero h1 {
    font-size: 28px;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .cta-section h2 {
    font-size: 24px;
  }
  
  .pledge-content h2 {
    font-size: 28px;
  }
}
