/* ============================================
   Ronald S. Uryniak, CPA — Editorial Style
   Teal + Slate Grey | Playfair Display + Inter
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-900: #0a5c5f;
  --teal-800: #0D7377;
  --teal-700: #118a8e;
  --teal-600: #14a0a4;
  --teal-500: #1bc4c9;
  --teal-100: #e0f4f4;
  --teal-50:  #f0f9f9;

  --slate-950: #0c1522;
  --slate-900: #1a2332;
  --slate-800: #243044;
  --slate-700: #2f3d52;
  --slate-600: #4a5a70;
  --slate-500: #6b7f96;
  --slate-400: #94a3b8;
  --slate-300: #b8c4d4;
  --slate-200: #d4dce8;
  --slate-100: #eef2f7;
  --slate-50:  #f6f8fb;
  --slate-25:  #fafbfd;

  --white: #ffffff;
  --cream: #fafbfc;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--slate-950);
}

em {
  font-style: italic;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(12, 21, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo--footer {
  margin-bottom: 16px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--teal-800);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.logo:hover .logo-mark {
  transform: rotate(-3deg) scale(1.05);
  background: var(--teal-700);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-950);
}

.logo-sub {
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Nav --- */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--teal-800);
  background: var(--teal-50);
}

.nav-cta {
  background: var(--teal-800) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.3s var(--ease-out), transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--teal-700) !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(12, 21, 34, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-overlay.active .mobile-nav {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--slate-700);
  padding: 14px 16px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.mobile-link:hover {
  color: var(--teal-800);
  background: var(--teal-50);
}

.mobile-link--cta {
  margin-top: 16px;
  background: var(--teal-800);
  color: var(--white) !important;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-800);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 115, 119, 0.3);
}

.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--teal-800);
  color: var(--teal-800);
  background: var(--teal-50);
}

.btn-white {
  background: var(--white);
  color: var(--teal-900);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Eyebrow --- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--teal-800);
  flex-shrink: 0;
}

.section-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-800);
}

/* --- Section Title --- */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.section-title--light {
  color: var(--white);
}

.section-title em {
  color: var(--teal-600);
}

.section-title--light em {
  color: var(--teal-300);
}

/* --- Hero --- */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--slate-25);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow .eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--teal-800);
}

.hero-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-800);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--slate-950);
}

.hero-headline .accent-word {
  color: var(--teal-800);
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-950);
}

.stat-label {
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-300);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 21, 34, 0.15);
}

.hero-img--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
}

.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--accent {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 55%;
  height: 45%;
  border: 5px solid var(--white);
}

.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-box {
  position: absolute;
  bottom: 2%;
  right: 5%;
  background: var(--teal-800);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(13, 115, 119, 0.4);
}

.accent-box-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.accent-box-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

/* Hero Pattern */
.hero-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal-800) 0px,
    var(--teal-800) 2px,
    transparent 2px,
    transparent 12px
  );
  opacity: 0.4;
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(12, 21, 34, 0.12);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--teal-100);
  border-radius: 16px;
  z-index: -1;
}

.about-content {
  max-width: 520px;
}

.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: 12px;
  transition: background 0.2s;
}

.value-item:hover {
  background: var(--teal-50);
}

.value-item svg {
  color: var(--teal-800);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  line-height: 1.4;
}

/* --- Services --- */
.services {
  padding: 120px 0;
  background: var(--slate-900);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-600), transparent);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

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

.service-card {
  background: var(--slate-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(13, 115, 119, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-800);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-400);
}

/* --- Why --- */
.why {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
  max-width: 520px;
}

.why-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--teal-100);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.why-item-content h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.why-item-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(12, 21, 34, 0.12);
}

.why-quote {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--teal-800);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(13, 115, 119, 0.35);
}

.why-quote svg {
  opacity: 0.4;
  margin-bottom: 12px;
}

.why-quote blockquote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-headline em {
  color: var(--teal-200);
}

.cta-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--slate-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-800);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-800);
}

.contact-value:hover {
  color: var(--teal-800);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 21, 34, 0.08);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 16px 48px rgba(12, 21, 34, 0.08);
  border: 1px solid var(--slate-200);
}

.form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
  background: var(--white);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-50);
  border: 2px solid var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal-800);
}

.form-success h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--slate-900);
}

.form-success p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: var(--slate-500);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--slate-600);
}

.footer-legal {
  font-size: 12px !important;
  color: var(--slate-700) !important;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    height: 480px;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    gap: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 400px;
    order: -1;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap img {
    height: 400px;
  }

  .about-image-accent {
    width: 120px;
    height: 120px;
    bottom: -12px;
    right: -12px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual img {
    height: 360px;
  }

  .why-quote {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: 100%;
  }

  .cta-banner {
    padding: 72px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-card {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
