/* ===== ATTIRTIRE — Premium Light Design System ===== */
:root {
  --bg-deep: #FAF9F7;
  --bg-primary: #F5F3F0;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF9F7;
  --bg-elevated: #F5F3F0;
  --text-primary: #1A1714;
  --text-secondary: #5C5650;
  --text-muted: #9B938B;
  --accent: #B8864E;
  --accent-light: #C4956A;
  --accent-dark: #8B5E3C;
  --accent-glow: rgba(184, 134, 78, 0.08);
  --accent-glow-strong: rgba(184, 134, 78, 0.15);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-card: rgba(0, 0, 0, 0.09);
  --border-active: rgba(184, 134, 78, 0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
  color: var(--text-primary); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; letter-spacing: 0.3px; transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0;
  height: 1.5px; background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 13px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 10px 22px; border-radius: 9999px; text-decoration: none;
  letter-spacing: 0.4px; transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--accent-glow-strong); }
.nav-toggle { 
  display: none; flex-direction: column; gap: 5px; cursor: pointer; 
  background: none; border: none; padding: 4px; z-index: 1002;
  position: relative; width: 28px; height: 22px;
}
.nav-toggle span { 
  display: block; width: 100%; height: 2px; background: var(--text-primary); 
  border-radius: 2px; transition: 0.3s ease; position: absolute; left: 0;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Side Drawer */
.nav-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.nav-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100vh;
  background: var(--bg-surface); z-index: 999;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.nav-drawer.active { transform: translateX(0); }

.drawer-header {
  padding: 24px 28px; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-header .nav-logo { font-size: 24px; }
.drawer-close {
  background: none; border: none; font-size: 24px; cursor: pointer;
  color: var(--text-secondary); padding: 4px; line-height: 1;
}

.drawer-links {
  flex: 1; list-style: none; padding: 16px 0; overflow-y: auto;
}
.drawer-links li { }
.drawer-links a {
  display: block; padding: 15px 28px; font-size: 16px; font-weight: 500;
  color: var(--text-primary); text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.drawer-links a:hover, .drawer-links a.active {
  color: var(--accent); background: var(--accent-glow);
}

.drawer-footer {
  padding: 20px 28px; border-top: 1px solid var(--border-subtle);
}
.drawer-wa {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  background: #25D366; color: #fff; border-radius: 9999px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  justify-content: center; transition: all var(--transition);
}
.drawer-wa:hover { background: #1da851; }
.drawer-wa svg { width: 20px; height: 20px; fill: #fff; }

/* Hide desktop nav on mobile, show toggle */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (min-width: 769px) {
  .nav-drawer, .nav-drawer-overlay { display: none; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; z-index: 1;
  padding: 160px 40px 100px; text-align: center;
  max-width: var(--max-width); margin: 0 auto;
}
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--border-active);
  padding: 8px 18px; border-radius: 9999px; margin-bottom: 24px;
  background: var(--accent-glow);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 18px; color: var(--text-secondary); max-width: 600px;
  margin: 0 auto; line-height: 1.75;
}

/* Homepage-specific two-column hero */
.hero-home {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; text-align: left; padding-top: 180px;
  padding-bottom: 100px; max-width: var(--max-width); margin: 0 auto;
}
.hero-home-content { min-width: 0; }
.hero-home-content .badge { display: inline-flex; }
.hero-home-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 700;
  line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 24px;
}
.hero-home-content h1 em { font-style: italic; color: var(--accent); }
.hero-home-content .hero-desc {
  font-size: 18px; color: var(--text-secondary); max-width: 500px;
  line-height: 1.75; margin-bottom: 32px;
}
.hero-home-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 36px; max-width: 500px;
}
.hero-home-stats .stat-item { text-align: left; }
.hero-home-stats .stat-item h3 {
  font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700;
  color: var(--accent); line-height: 1.1; margin-bottom: 4px;
}
.hero-home-stats .stat-item span {
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px;
}
.hero-home-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-home-visual { position: relative; }
.hero-home-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-xl); border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
}
.hero-home-visual .hero-fallback {
  display: none; width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f0ede8, #e8e4dd, #f0ede8);
  border-radius: var(--radius-xl); border: 1px solid var(--border-card);
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 800;
  color: rgba(184,134,78,0.08);
}

@media (max-width: 768px) {
  .hero-home {
    grid-template-columns: 1fr; gap: 40px;
    text-align: center; padding-top: 120px; padding-bottom: 60px;
    padding-left: 20px; padding-right: 20px;
  }
  .hero-home-content { text-align: center; }
  .hero-home-content .badge { display: inline-flex; }
  .hero-home-content h1 { font-size: clamp(32px, 8vw, 48px); letter-spacing: -0.5px; }
  .hero-home-content .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; font-size: 16px; }
  .hero-home-stats {
    grid-template-columns: repeat(2, 1fr); gap: 20px 32px;
    max-width: 100%; margin-left: auto; margin-right: auto;
  }
  .hero-home-stats .stat-item { text-align: center; }
  .hero-home-stats .stat-item h3 { font-size: 28px; }
  .hero-home-buttons { justify-content: center; }
  .hero-home-buttons .btn-primary,
  .hero-home-buttons .btn-ghost { width: 100%; text-align: center; }
  .hero-home-visual img { aspect-ratio: 16/10; border-radius: var(--radius-lg); }
  .hero-home-visual .hero-fallback { aspect-ratio: 16/10; }
}

@media (max-width: 480px) {
  .hero-home { padding-top: 110px; padding-bottom: 48px; gap: 32px; }
  .hero-home-content h1 { font-size: 30px; }
  .hero-home-content .hero-desc { font-size: 15px; }
  .hero-home-stats { gap: 14px 24px; }
  .hero-home-stats .stat-item h3 { font-size: 24px; }
  .hero-home-stats .stat-item span { font-size: 11px; }
  .hero-home-buttons { flex-direction: column; gap: 12px; }
}

/* ===== SECTIONS ===== */
.section {
  position: relative; z-index: 1;
  padding: 100px 40px; max-width: var(--max-width); margin: 0 auto;
}
.section-alt {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.6px; margin-bottom: 18px;
}
.section-desc {
  font-size: 17px; color: var(--text-secondary); max-width: 560px;
  margin: 0 auto; line-height: 1.75;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover {
  background: var(--bg-card-hover); border-color: var(--border-active);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; background: var(--accent-glow);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px;
}
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-item h3 {
  font-family: 'Playfair Display', serif; font-size: 38px;
  font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.stat-item span { font-size: 13px; color: var(--text-muted); letter-spacing: 0.3px; }

/* ===== SECTOR GRID ===== */
.sector-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-md); padding: 24px 20px; text-align: center;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: all var(--transition); cursor: default;
}
.sector-card:hover {
  border-color: var(--accent); color: var(--accent-dark);
  background: var(--bg-card-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ===== PROCESS STEPS ===== */
.process-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
.process-step { text-align: center; }
.process-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--bg-card); border: 2px solid var(--border-card);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 700; color: var(--accent); transition: all var(--transition);
}
.process-step:hover .process-num {
  border-color: var(--accent); background: var(--accent-glow);
}
.process-step h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.process-step p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ===== BUTTONS ===== */
.btn-primary {
  font-size: 14px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 15px 32px; border-radius: 9999px; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: 0.4px; transition: all var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 20px var(--accent-glow-strong); transform: translateY(-2px); }
.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--text-primary); background: transparent;
  padding: 15px 32px; border-radius: 9999px; text-decoration: none;
  border: 1.5px solid var(--border-card); cursor: pointer;
  letter-spacing: 0.4px; transition: all var(--transition); display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-image {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-xl); border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.6px; margin-bottom: 24px;
}
.about-content p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px;
}

/* ===== DETAIL SECTION ===== */
.detail-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 60px 0; border-bottom: 1px solid var(--border-subtle);
}
.detail-block:last-child { border-bottom: none; }
.detail-block.reverse { direction: rtl; }
.detail-block.reverse > * { direction: ltr; }
.detail-text h3 {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: -0.4px;
}
.detail-text h3 span { color: var(--accent); }
.detail-text p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px;
}
.detail-features { list-style: none; }
.detail-features li {
  font-size: 14px; color: var(--text-secondary); padding: 8px 0;
  padding-left: 24px; position: relative;
}
.detail-features li::before {
  content: '▸'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.detail-image {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--border-card);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px; min-width: 48px; background: var(--accent-glow);
  border: 1px solid var(--border-active); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact-detail a { text-decoration: none; transition: color var(--transition); }
.contact-detail a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; font-size: 14px; font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--border-card); border-radius: var(--radius-sm);
  background: var(--bg-deep); color: var(--text-primary);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 15px; font-size: 14px; font-weight: 600;
  color: #fff; background: var(--accent); border: none;
  border-radius: 9999px; cursor: pointer; letter-spacing: 0.4px; transition: all var(--transition);
}
.form-submit:hover { background: var(--accent-dark); box-shadow: 0 4px 20px var(--accent-glow-strong); }

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(135deg, var(--accent-glow) 0%, rgba(184,134,78,0.02) 100%);
  border: 1px solid var(--border-active); border-radius: var(--radius-xl);
  margin: 60px 0 0;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 28px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 12px;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-active); box-shadow: var(--shadow-sm); }
.faq-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.whatsapp-float svg {
  width: 32px; height: 32px; fill: #fff;
}
.whatsapp-float .pulse-ring {
  position: absolute; width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid #25D366; animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute; right: 72px; background: var(--text-primary); color: #fff;
  padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1; background: var(--text-primary);
  border-top: 1px solid var(--border-subtle); padding: 72px 40px 36px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 12px;
  color: #fff;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none;
  margin-bottom: 12px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: var(--max-width); margin: 48px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1); display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .about-grid, .contact-grid, .detail-block { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(3, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .detail-block.reverse { direction: ltr; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .section, .page-hero { padding: 80px 20px; }
  .grid-4, .process-row { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}