@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
  --black: #050505;
  --off-black: #0d0d0d;
  --dark: #111111;
  --border: #1e1e1e;
  --muted: #2a2a2a;
  --dim: #555555;
  --mid: #888888;
  --light: #b0b0b0;
  --white: #e8e8e8;
  --pure: #f0ede8;
  --accent: #c8b89a;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  transition: opacity 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

body.page-fade-out {
  opacity: 0;
  pointer-events: none;
}

body.page-fade-in {
  opacity: 0;
}

body.page-fade-in.ready {
  opacity: 1;
}

/* Custom Cursor - only on devices with mouse */
@media (hover: hover) and (pointer: fine) {
  .cursor-custom {
    position: fixed;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 36px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease, border-radius 0.2s ease;
  }

  .cursor-custom.link {
    transform: translate(-50%, -50%) scale(1.4);
    border-width: 1.5px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.25);
  }

  .cursor-custom.text {
    width: 2px;
    height: 18px;
    border-radius: 1px;
    border-width: 1.5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
  }
}

@media (hover: none) or (pointer: coarse) {
  .cursor-custom {
    display: none !important;
  }
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(5,5,5,0.95);
  border-bottom-color: var(--border);
  padding: 18px 60px;
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--pure);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.nav-logo .logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure);
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--pure);
  transition: all 0.3s ease;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--pure);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--black) !important;
}

/* PAGE WRAPPER */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* HERO */
@keyframes hero-circles-float {
  0%, 100% {
    transform: translateY(-50%);
    box-shadow: 0 0 30px rgba(200, 184, 154, 0.08);
  }
  50% {
    transform: translateY(calc(-50% - 15px));
    box-shadow: 0 0 60px rgba(200, 184, 154, 0.2);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  width: 600px;
  height: 600px;
  border: 1px solid var(--border);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  box-shadow: 0 0 30px rgba(200, 184, 154, 0.08);
  animation: hero-circles-float 4s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  width: 400px;
  height: 400px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translateY(-50%);
  box-shadow: 0 0 30px rgba(200, 184, 154, 0.08);
  animation: hero-circles-float 4s ease-in-out infinite 0.5s;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pure);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero h1 .hero-brain {
  display: inline-block;
  text-shadow: 0 0 20px rgba(200, 184, 154, 0.5), 0 0 40px rgba(200, 184, 154, 0.3);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.hero h1 .hero-brain:hover {
  transform: scale(1.08);
  text-shadow: 0 0 30px rgba(200, 184, 154, 0.7), 0 0 60px rgba(200, 184, 154, 0.4);
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  max-width: 400px;
  line-height: 2;
  margin-bottom: 56px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--pure);
  color: var(--black);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--pure);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
}

/* SECTIONS */
section {
  padding: 120px 60px;
}

.section-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--pure);
  letter-spacing: -0.01em;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 70px;
  border: 1px solid var(--border);
}

.service-card {
  background: var(--off-black);
  padding: 50px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s;
}

.service-card:hover {
  background: var(--dark);
}

.service-card:hover::before {
  height: 100%;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--pure);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.9;
}

/* ABOUT LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-top: 70px;
}

.about-text p {
  color: var(--mid);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}

.about-text p:first-child {
  font-size: 16px;
  color: var(--light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.8;
}

.about-details {
  border-left: 1px solid var(--border);
  padding-left: 60px;
}

.about-item {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-item-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-item-value {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 70px;
  border: 1px solid var(--border);
}

.testimonial-card {
  background: var(--off-black);
  padding: 50px 40px;
  transition: background 0.3s;
}

.testimonial-card:hover {
  background: var(--dark);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 14px;
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
}

.testimonial-author strong {
  display: block;
  color: var(--light);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.15em;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 70px;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--pure);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--mid);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 48px;
}

.contact-detail {
  margin-bottom: 32px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.form-group:first-of-type {
  border-top: 1px solid var(--border);
}

.form-group label {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  transition: all 0.3s;
  pointer-events: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 36px 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.03em;
  resize: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  font-size: 9px;
  color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
}

.form-submit {
  margin-top: 40px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--dim);
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* PAGE HERO (inner pages) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 60px 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero-content .page-hero-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-hero-content .page-hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--pure);
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0 60px;
  width: calc(100% - 120px);
}

/* Confetti */
@keyframes confetti-fall {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) rotate(var(--r));
    opacity: 0;
  }
}

.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 100000;
  animation: confetti-fall 1.2s ease-out forwards;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(ellipse 100% 80% at 50% 0%, rgba(200, 184, 154, 0.18) 0%, rgba(200, 184, 154, 0.06) 40%, transparent 70%),
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 184, 154, 0.12) 0%, transparent 50%),
      var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1001;
    padding: 130px 24px 50px;
    box-shadow: inset 0 0 80px rgba(200, 184, 154, 0.06);
  }
  .nav-links::before {
    content: 'vathe.';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: rgba(200, 184, 154, 0.6);
    text-shadow: 0 0 20px rgba(200, 184, 154, 0.3);
  }
  .nav-links::after {
    content: '';
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 184, 154, 0.5), transparent);
    box-shadow: 0 0 8px rgba(200, 184, 154, 0.4);
  }
  body.mobile-nav-open .nav-links {
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    max-width: 340px;
    text-align: center;
    border-bottom: 1px solid rgba(200, 184, 154, 0.25);
    position: relative;
    padding-left: 20px;
  }
  .nav-links li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(200, 184, 154, 0.6);
    transition: height 0.25s ease;
  }
  .nav-links li:active::after,
  .nav-links li:has(a.active)::after {
    height: 24px;
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 24px 24px;
    font-size: 16px;
    letter-spacing: 0.35em;
    color: var(--white);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--pure);
    transform: none;
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.5), 0 0 48px rgba(200, 184, 154, 0.35);
  }
  .nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 28px rgba(200, 184, 154, 0.7), 0 0 56px rgba(200, 184, 154, 0.35);
  }
  body.mobile-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body.mobile-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.mobile-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  body.mobile-nav-open nav {
    backdrop-filter: none;
  }
  body.mobile-nav-open .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  html.mobile-nav-open,
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open .nav-links {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero::before,
  .hero::after { display: none; }
  
  section { padding: 60px 24px; }
  .section-tag { font-size: 9px; }
  h2 { font-size: clamp(28px, 6vw, 42px); }
  
  .stats-bar { padding: 24px; grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .stat:last-child { border-bottom: none; }
  
  .services-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .service-card { padding: 32px 24px; min-width: 0; }
  .service-card h3 { font-size: 22px; }
  
  section [style*="grid-template-columns: 280px"] {
    grid-template-columns: 1fr !important;
  }
  section [style*="grid-template-columns: 280px"] > div:first-child {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  section [style*="grid-template-columns: 280px"] > div {
    padding: 32px 24px !important;
    min-height: auto !important;
  }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .about-details { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 40px; }
  .about-item { margin-bottom: 32px; padding-bottom: 32px; }
  
  .testimonials-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-quote { font-size: 36px; }
  
  .contact-layout { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .contact-info p { margin-bottom: 32px; }
  
  .page-hero { padding: 100px 24px 50px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  
  footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
  
  .cta-band {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 40px 24px !important;
    text-align: center;
  }
  .cta-band p { font-size: clamp(22px, 5vw, 28px) !important; }
  
  [style*="padding: 80px"],
  [style*="padding: 80px 60px"] { padding: 40px 24px !important; }
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .nav-logo .logo-img { height: 28px; }
  img { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  nav { padding: 16px 20px; }
  .hero, section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 80px; padding-bottom: 50px; }
  .stats-bar { padding: 20px; }
  .service-card, .testimonial-card { padding: 24px 20px; }
  footer { padding: 24px 20px; }
  .nav-cta { padding: 8px 16px; font-size: 10px; }
  .cta-band { padding: 32px 20px !important; }
  [style*="padding: 80px"],
  [style*="padding: 80px 60px"] { padding: 32px 20px !important; }
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
