/* ============================================================
   INTERMEDIA CONNECT – Design System & Styles
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-primary: #0B1D35;
  --color-secondary: #ffffff;
  --color-accent: #6B2FA0;
  --color-accent-light: rgba(107, 47, 160, 0.08);
  --color-accent-hover: #5A2688;
  --color-text: #0B1D35;
  --color-muted: #64748B;
  --color-border: #E2E8F0;
  --shadow-soft: 0 2px 15px rgba(11, 29, 53, 0.06);
  --shadow-medium: 0 8px 30px rgba(11, 29, 53, 0.12);
  --shadow-large: 0 20px 60px rgba(11, 29, 53, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --container: 1200px;
  --space-section: clamp(40px, 5vw, 50px);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }
section[id] { scroll-margin-top: 0; }

/* === LAYOUT UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.desktop-only { display: block; }
.mobile-only { display: none; }
.accent-text { color: var(--color-accent); }
.muted-text { color: var(--color-muted); }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--color-primary);
}
.nav-logo-accent { color: var(--color-accent); }
.nav-logo-icon { max-width: 168px; max-height: 168px; }
.nav-links {
  display: flex; gap: 32px; flex-grow: 1; justify-content: center; align-items: center;
}
.nav-link {
  font-size: 0.95rem; font-weight: 500; color: var(--color-muted); transition: color 0.3s; position: relative;
}
.nav-link:hover { color: var(--color-primary); }
.nav-active { color: var(--color-primary) !important; }
.nav-active::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--color-primary);
}
.nav-phone svg { width: 18px; height: 18px; stroke: var(--color-accent); flex-shrink: 0; }
.nav-cta {
  background: var(--color-accent); color: white; padding: 10px 24px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.nav-cta:hover { background: var(--color-accent-hover); transform: translateY(-2px); }
.nav-kundencenter {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--color-primary);
  padding: 8px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full); transition: all 0.3s;
}
.nav-kundencenter:hover {
  border-color: var(--color-accent); color: var(--color-accent);
  background: var(--color-accent-light);
}
.nav-kundencenter svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-hamburger {
  display: none; width: 32px; height: 32px; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--color-primary); transition: all 0.3s; border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(5.5px) translateX(1px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5.5px) translateX(1px); }
.nav-mobile {
  position: fixed; top: 80px; left: 0; width: 100%; height: calc(100dvh - 80px);
  background: white; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%); opacity: 0; transition: all 0.4s ease; z-index: 999; pointer-events: none;
}
.nav-mobile.active { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile-link { font-size: 1.2rem; font-weight: 600; color: var(--color-primary); }
.nav-mobile-cta {
  background: var(--color-accent); color: white; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600;
}
.nav-hidden { transform: translateY(-100%); }
.nav-scrolled { box-shadow: var(--shadow-soft); }

/* === HERO === */
.hero {
  min-height: 100dvh; display: flex; align-items: center;
  padding-top: clamp(80px, 10vh, 110px); padding-bottom: clamp(40px, 6vh, 80px);
  background: var(--color-bg); position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-accent-light); color: var(--color-accent);
  padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; stroke: var(--color-accent); flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; line-height: 1.15; color: var(--color-primary); margin-bottom: 20px;
}
.hero-title .accent { color: var(--color-accent); }
.hero-subtitle {
  font-size: 1.15rem; line-height: 1.7; color: var(--color-muted); margin-bottom: 32px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--color-primary); }
.hero-stat-label { font-size: 0.85rem; color: var(--color-muted); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--color-border); }
.hero-visual { position: relative; }
.hero-image-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-large); }
.hero-image-wrapper img { width: 100%; height: auto; display: block; }
.hero-float-card {
  position: absolute; background: white; border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-medium); display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-float-card--badge { top: -18px; left: 20px; }
.hero-float-card--bottom { bottom: -16px; right: 20px; }
.hero-float-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-text { font-weight: 700; font-size: 0.95rem; color: var(--color-primary); }
.hero-float-subtext { font-size: 0.8rem; color: var(--color-muted); font-weight: 400; }
.hero-phone-card {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--color-accent); color: white; border-radius: var(--radius-sm);
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-medium); z-index: 3; font-weight: 600; font-size: 0.9rem;
}
.hero-phone-card svg { stroke: white; flex-shrink: 0; width: 18px; height: 18px; }

/* === STATS BAR === */
.stats-bar { background: var(--color-primary); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-item { color: white; }
.stats-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: white; margin-bottom: 4px; }
.stats-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* === SECTION HEADERS === */
.section-header { margin-bottom: 36px; }
.section-header.text-center { text-align: center; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--color-primary); margin-bottom: 12px;
}
.section-header p { font-size: 1.05rem; color: var(--color-muted); line-height: 1.7; max-width: 640px; }
.section-header.text-center p { margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--color-accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-underline {
  display: block; width: 60px; height: 3px; background: var(--color-accent); margin-top: 12px; border-radius: 2px;
}
.section-header.text-center .section-underline { margin: 12px auto 0; }

/* === SERVICES === */
.services { background: var(--color-bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--color-surface); border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s ease; border: 1px solid var(--color-border);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.service-card-image { width: 100%; height: 200px; object-fit: cover; }
.service-card-inner { padding: 28px; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--color-accent); }
.service-card-inner h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--color-primary);
}
.service-card-inner p { font-size: 0.95rem; color: var(--color-muted); line-height: 1.6; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.9rem; color: var(--color-accent); transition: gap 0.3s;
}
.service-card-link:hover { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; stroke: currentColor; }

/* === TRUST === */
.trust { background: var(--color-surface); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card {
  background: var(--color-bg); border-radius: var(--radius); padding: 32px; text-align: center;
  transition: transform 0.3s; border: 1px solid var(--color-border);
}
.trust-card:hover { transform: translateY(-4px); }
.trust-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-accent-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-icon svg { width: 28px; height: 28px; stroke: var(--color-accent); }
.trust-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.6; }

/* === ABOUT === */
.about { background: var(--color-surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.about-content p { color: var(--color-muted); line-height: 1.7; margin-bottom: 20px; }
.about-image-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-medium); }
.about-image-wrapper img { width: 100%; height: auto; }
.about-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--color-accent); color: white; padding: 14px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; box-shadow: var(--shadow-medium);
}
.about-features { list-style: none; padding: 0; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; }
.about-feature-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 14px; height: 14px; stroke: var(--color-accent); }

/* === FAQ === */
.faq { background: var(--color-bg); }
.faq-list { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--color-surface); border-radius: var(--radius-sm); padding: 24px 28px; border: 1px solid var(--color-border); }
.faq-question { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--color-accent); margin-bottom: 10px; }
.faq-answer-always { font-size: 0.95rem; color: var(--color-muted); line-height: 1.7; }

/* === CONTACT === */
.contact { background: var(--color-surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--color-muted); line-height: 1.7; }
.contact-details { display: grid; gap: 20px; margin-top: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--color-accent); }
.contact-detail-text { flex: 1; }
.contact-detail-label { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 2px; }
.contact-detail-value { font-weight: 600; font-size: 0.95rem; }
.contact-detail-value a { color: var(--color-primary); transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--color-accent); }
.contact-form-wrapper {
  background: var(--color-bg); border-radius: var(--radius); padding: 36px; border: 1px solid var(--color-border);
}
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--color-primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; transition: border 0.3s; background: white; color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px var(--color-accent-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--color-muted); }
.form-checkbox input { margin-top: 3px; accent-color: var(--color-accent); flex-shrink: 0; }
.form-checkbox a { color: var(--color-accent); font-weight: 500; }
.form-submit { margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.active { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-accent-light); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.form-success-icon svg { width: 32px; height: 32px; stroke: var(--color-accent); }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--color-muted); }

/* === CTA BANNER === */
.cta-banner { background: var(--color-primary); padding: 48px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); color: white; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--color-primary); color: white; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: white; margin-bottom: 16px;
}
.footer-logo-accent { color: var(--color-accent); }
.footer-logo-icon { max-width: 152px; max-height: 152px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-heading { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: white; }
.footer-links { display: grid; gap: 10px; }
.footer-link { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-link:hover { color: white; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--color-accent); flex-shrink: 0; }
.footer-cta {
  display: inline-block; background: var(--color-accent); color: white; padding: 12px 24px;
  border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem; margin-top: 16px; transition: all 0.3s;
}
.footer-cta:hover { background: var(--color-accent-hover); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-legal a:hover { color: white; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full); font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-accent); color: white; }
.btn-primary:hover { background: var(--color-accent-hover); box-shadow: var(--shadow-medium); }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-border); }
.btn-secondary:hover { border-color: var(--color-primary); }
.btn-dark { background: var(--color-primary); color: white; }
.btn-dark:hover { background: #132d4f; }
.btn-white { background: white; color: var(--color-primary); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* === PAGE HERO === */
.page-hero {
  padding-top: clamp(100px, 12vh, 120px); padding-bottom: clamp(30px, 4vh, 40px);
  background: var(--color-primary); color: white;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: white; font-weight: 600; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 600px; }

/* === LEGAL PAGES === */
.legal-page { padding-top: 40px; padding-bottom: 60px; }
.legal-content { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-top: 36px; margin-bottom: 12px; color: var(--color-primary); }
.legal-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.legal-content p { margin-bottom: 14px; color: var(--color-muted); }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; list-style: disc; }
.legal-content li { margin-bottom: 6px; color: var(--color-muted); }
.legal-content a { color: var(--color-accent); }
.legal-updated { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 24px; }
.legal-placeholder { background: #FEF2F2; color: #DC2626; padding: 4px 10px; border-radius: 4px; font-weight: 600; }

/* === DETAIL SERVICES === */
.detail-services-grid { display: grid; gap: 32px; }
.detail-service-card {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  background: var(--color-surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--color-border); transition: box-shadow 0.3s;
}
.detail-service-card:hover { box-shadow: var(--shadow-medium); }
.detail-service-card:nth-child(even) { direction: rtl; }
.detail-service-card:nth-child(even) > * { direction: ltr; }
.detail-service-image { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.detail-service-content { padding: 36px; }
.detail-service-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; color: var(--color-primary); }
.detail-service-content .detail-service-subtitle { font-size: 1rem; color: var(--color-accent); font-weight: 600; margin-bottom: 12px; }
.detail-service-content p { color: var(--color-muted); line-height: 1.7; margin-bottom: 20px; }
.detail-service-features { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.detail-service-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.detail-service-feature svg { width: 18px; height: 18px; stroke: var(--color-accent); flex-shrink: 0; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* === RESPONSIVE 1024px === */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-service-card { grid-template-columns: 1fr; }
  .detail-service-card:nth-child(even) { direction: ltr; }
  .detail-service-image { min-height: 250px; }
  .form-row { grid-template-columns: 1fr; }
}

/* === RESPONSIVE 768px === */
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  .about-features { grid-template-columns: 1fr; }
  .detail-service-features { grid-template-columns: 1fr; }
}

/* === RESPONSIVE 480px === */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .container { padding: 0 16px; }
}
