/* ========================================
   SCYLLION V2 – Professional Business Design
   ======================================== */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; cursor: default; }
a, button, select, label[for], .hamburger, .back-to-top, .faq-trigger,
.detail-modal-close, .btn-modal-cta, .nav-link, .scroll-indicator { cursor: pointer; }
input, textarea { cursor: text; }

:root {
    --primary-light: #C5C3C3;
    --primary-dark: #46494C;
    --light-bg: #EBEBEB;
    --accent: #D0456F;
    --secondary: #1195A1;
    --white: #ffffff;
    --dark: #2a2d30;
    --font-heading: 'Quicksand', 'Trebuchet MS', sans-serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--primary-dark);
    background: var(--light-bg);
    overflow-x: clip;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accent-text { color: var(--accent); }

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.preloader-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.6rem;
    padding: 0 1rem;
    max-width: 100vw;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, var(--secondary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloader-title-shimmer 3s ease infinite;
}
@keyframes preloader-title-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.preloader-logo img { width: 100px; height: 100px; border-radius: 20px; margin-bottom: 1.5rem; animation: pulse-glow 1.5s ease infinite; filter: drop-shadow(0 0 20px rgba(208, 69, 111, 0.3)); }
.preloader-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.preloader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.preloader-progress { height: 100%; background: linear-gradient(90deg, var(--accent), var(--secondary)); border-radius: 3px; animation: loading 1.5s ease-out forwards; }

@keyframes loading { 0% { width: 0; } 100% { width: 100%; } }
@keyframes pulse-glow { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(197,195,195,0.2);
}
.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    z-index: 10;
    transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo .logo { width: 36px; height: 36px; border-radius: 8px; }
.nav-menu {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}
.navbar.scrolled .nav-link { color: var(--primary-dark); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(208,69,111,0.4);
}
.btn-cta-nav:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(208,69,111,0.5);
}
.btn-cta-nav i { font-size: 0.7rem; transition: transform 0.3s; }
.btn-cta-nav:hover i { transform: translateX(3px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #3a3d40 0%, #2f3235 40%, #2a2d30 100%);
    overflow: clip;
    padding: 6rem 0 4rem;
}
.hero-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-wave-1 { transform-origin: bottom right; animation: waveFloat1 8s ease-in-out infinite; }
.hero-wave-2 { transform-origin: bottom right; animation: waveFloat2 10s ease-in-out infinite; }
.hero-wave-3 { transform-origin: bottom right; animation: waveFloat3 12s ease-in-out infinite; }

@keyframes waveFloat1 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.04) scaleX(1.01); }
}
@keyframes waveFloat2 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.06) scaleX(1.015); }
}
@keyframes waveFloat3 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.03) scaleX(1.008); }
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-wave-top-1 { transform-origin: top left; animation: waveTopFloat1 8s ease-in-out infinite; }
.hero-wave-top-2 { transform-origin: top left; animation: waveTopFloat2 10s ease-in-out infinite; }
.hero-wave-top-3 { transform-origin: top left; animation: waveTopFloat3 12s ease-in-out infinite; }

@keyframes waveTopFloat1 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.04) scaleX(1.01); }
}
@keyframes waveTopFloat2 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.06) scaleX(1.015); }
}
@keyframes waveTopFloat3 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.03) scaleX(1.008); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--accent); font-size: 0.7rem; }
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.hero-title .line-reveal { display: block; }
.hero-title .accent-text {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}
.hero-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent), #c03d63);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(208,69,111,0.4);
}
.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(208,69,111,0.5);
}
.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-ghost-hero:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item { text-align: center; flex: 1; }
.trust-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}
.trust-unit {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
}
.trust-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
}
.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-right: 2px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 1; height: 40px; } 50% { opacity: 0.3; height: 25px; } }

/* ========================================
   SECTION SHARED
   ======================================== */
section { padding: 6rem 0; text-align: center; }
.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-label { justify-content: center; }
.section-label span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}
.section-intro {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-top: 1rem;
    text-align: center;
}
section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.section-problem { background: var(--white); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.problem-card {
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(197,195,195,0.3);
    transition: all 0.4s ease;
    text-align: left;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.problem-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(208,69,111,0.1), rgba(17,149,161,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--accent);
}
.problem-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.problem-card p { font-size: 0.85rem; color: #6b6f73; line-height: 1.7; }

.problem-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(208,69,111,0.04), rgba(17,149,161,0.04));
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}
.conclusion-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.problem-conclusion p { font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ========================================
   APPROACH SECTION
   ======================================== */
.section-approach { background: var(--light-bg); }
.approach-pillars {
    display: grid;
    gap: 1.25rem;
    margin-top: 3rem;
}
.pillar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(197,195,195,0.2);
    transition: all 0.4s ease;
}
.pillar:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}
.pillar-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(17,149,161,0.15);
    min-width: 50px;
}
.pillar-content { flex: 1; text-align: left; }
.pillar-content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.pillar-content p { font-size: 0.85rem; color: #6b6f73; }
.pillar-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(17,149,161,0.1), rgba(208,69,111,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Comparison */
.comparison-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(197,195,195,0.2);
    text-align: left;
}
.comparison-side { padding: 2.5rem 2rem; }
.comparison-old { background: rgba(70,73,76,0.03); }
.comparison-new { background: rgba(17,149,161,0.03); }
.comparison-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
}
.comparison-old .comparison-label { border-color: rgba(208,69,111,0.3); color: #999; }
.comparison-new .comparison-label { border-color: var(--secondary); color: var(--secondary); }
.comparison-side li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #555;
    padding: 0.5rem 0;
}
.comparison-old li i { color: rgba(208,69,111,0.5); font-size: 0.75rem; margin-top: 3px; }
.comparison-new li i { color: var(--secondary); font-size: 0.75rem; margin-top: 3px; }
.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    padding: 0 1rem;
}
.comparison-divider span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 2px;
}

.approach-quote {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark);
    border-radius: var(--radius-lg);
    color: var(--white);
}
.approach-quote blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}
.quote-accent p {
    font-size: 1.1rem;
    color: var(--white);
}
.quote-accent strong {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

/* ========================================
   INLINE CTA
   ======================================== */
.inline-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    position: relative;
    overflow: hidden;
}
.inline-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("Images/Logo.svg") repeat;
    background-size: 100px 100px;
    opacity: 0.08;
}
.cta-content {
    position: relative;
    text-align: center;
}
.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}
.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}
.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--accent);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta-main i { transition: transform 0.3s; }
.btn-cta-main:hover i { transform: translateX(4px); }

/* ========================================
   SERVICES SECTION
   ======================================== */
.section-services { background: var(--white); }
.services-showcase { margin-top: 3rem; display: grid; gap: 2rem; }
.service-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197,195,195,0.2);
    transition: all 0.4s ease;
    text-align: left;
}
.service-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.service-block-header { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(17,149,161,0.12);
}
.service-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.service-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-block-body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--dark); }
.service-block-body > p { font-size: 0.9rem; color: #6b6f73; margin-bottom: 1.25rem; }
.service-features { display: grid; gap: 0.6rem; margin-bottom: 1rem; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #555;
}
.feature i { color: var(--secondary); margin-top: 3px; font-size: 0.8rem; }
.service-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(197,195,195,0.3);
}

.service-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.service-sub-item {
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(197,195,195,0.15);
    transition: all 0.3s ease;
}
.service-sub-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary);
}
.service-sub-item i { color: var(--secondary); font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-sub-item h4 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.service-sub-item p { font-size: 0.8rem; color: #6b6f73; }

/* ──── "Lese mehr" Hover Overlay ──── */
.has-modal {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.card-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(0deg, rgba(208,69,111,0.95) 0%, rgba(208,69,111,0.85) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}
.card-read-more span {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-read-more i {
    font-size: 0.75rem;
    color: #fff !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}
.has-modal:hover .card-read-more {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* ──── Detail Modal ──── */
.detail-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 45, 48, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}
.detail-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.detail-modal {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: 85vh;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.detail-modal-overlay.active .detail-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.detail-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(70,73,76,0.08);
    color: var(--primary-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}
.detail-modal-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}
.detail-modal-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}
.detail-modal-header {
    padding: 2rem 2.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.detail-modal-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(208,69,111,0.1), rgba(17,149,161,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}
.detail-modal-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}
.detail-modal-body {
    padding: 0 2.5rem 1.5rem;
    max-height: 45vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(208,69,111,0.3) transparent;
}
.detail-modal-body::-webkit-scrollbar { width: 5px; }
.detail-modal-body::-webkit-scrollbar-track { background: transparent; }
.detail-modal-body::-webkit-scrollbar-thumb {
    background: rgba(208,69,111,0.3);
    border-radius: 10px;
}
.detail-modal-body p {
    font-size: 0.9rem;
    color: #5a5e62;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.detail-modal-body p:last-child { margin-bottom: 0; }
.detail-modal-body strong { color: var(--primary-dark); }
.detail-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
}
.detail-modal-body ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.85rem;
    color: #5a5e62;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.detail-modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}
.detail-modal-body .modal-highlight {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(208,69,111,0.05), rgba(17,149,161,0.05));
    border-radius: 12px;
    border-left: 3px solid var(--secondary);
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-style: italic;
    line-height: 1.7;
}
.detail-modal-footer {
    padding: 1.25rem 2.5rem 2rem;
    display: flex;
    justify-content: center;
}
.btn-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--accent), #b8365c);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208,69,111,0.3);
}
.btn-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(208,69,111,0.45);
}
.btn-modal-cta i {
    transition: transform 0.3s ease;
}
.btn-modal-cta:hover i {
    transform: translateX(4px);
}

/* Modal responsive */
@media (max-width: 768px) {
    .detail-modal-overlay { padding: 1rem; }
    .detail-modal { max-width: 100%; border-radius: 16px; }
    .detail-modal-header { padding: 1.5rem 1.5rem 0.75rem; gap: 1rem; }
    .detail-modal-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.1rem; border-radius: 12px; }
    .detail-modal-header h3 { font-size: 1.05rem; }
    .detail-modal-body { padding: 0 1.5rem 1.25rem; }
    .detail-modal-footer { padding: 1rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
    .detail-modal-header { flex-direction: column; text-align: center; }
    .detail-modal-body { max-height: 50vh; }
    .btn-modal-cta { width: 100%; justify-content: center; }
}

/* Two Paths */
.two-paths {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197,195,195,0.2);
}
.two-paths h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.paths-intro { font-size: 0.9rem; color: #6b6f73; margin-bottom: 2rem; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.path-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid rgba(197,195,195,0.15);
    transition: all 0.3s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(208,69,111,0.1), rgba(17,149,161,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.path-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.path-card p { font-size: 0.85rem; color: #6b6f73; margin-bottom: 0.75rem; }
.path-entry { font-size: 0.8rem; color: var(--secondary); font-weight: 500; }
.path-entry em { font-style: normal; }
.paths-conclusion { font-size: 0.9rem; color: var(--primary-dark); }

/* ========================================
   WHY SCYLLION SECTION
   ======================================== */
.section-why { background: var(--light-bg); }
.why-content { margin: 2rem auto 0; text-align: center; }
.why-content p { font-size: 0.9rem; color: #555; line-height: 1.8; }

.why-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197,195,195,0.2);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}
.why-question:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.question-old, .question-new { width: 100%; }
.label-faded { display: block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: #aaa; margin-bottom: 0.5rem; }
.label-accent { display: block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; font-weight: 600; }
.question-old p { font-size: 1.1rem; color: #999; font-style: italic; font-family: var(--font-heading); font-weight: 600; }
.question-new p { font-size: 1.1rem; color: var(--dark); font-family: var(--font-heading); font-weight: 700; }
.question-arrow { color: var(--accent); font-size: 1.8rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.value-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    gap: 0.5rem;
    min-height: 140px;
    border: 1px solid rgba(197,195,195,0.15);
    transition: all 0.3s ease;
}
.value-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-item i { color: var(--secondary); font-size: 1.2rem; }
.value-item span { font-size: 0.85rem; color: #555; line-height: 1.6; text-align: center; display: flex; align-items: center; justify-content: center; justify-self: stretch; padding: 0 0.5rem; }

.why-closing {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--dark);
    border-radius: var(--radius-lg);
    text-align: center;
    color: rgba(255,255,255,0.75);
}
.why-closing p { font-size: 1rem; margin-bottom: 1rem; line-height: 1.9; }
.closing-strong { color: var(--white); font-size: 1.15rem !important; }
.closing-strong strong {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.section-team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.team-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(197,195,195,0.2);
    transition: all 0.4s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-image {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: center;
}
.team-card-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
    border-radius: 50%;
    border: 3px solid rgba(17,149,161,0.15);
}
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-info { padding: 2rem; text-align: left; }
.team-card-info h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.team-quote p { font-size: 0.8rem; color: #6b6f73; line-height: 1.7; margin-bottom: 0.5rem; }
.team-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(197,195,195,0.3);
}
.team-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ========================================
   FAQ SECTION
   ======================================== */
.section-faq { background: var(--light-bg); }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: grid; gap: 0.6rem; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(197,195,195,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(17,149,161,0.3); }
.faq-item.active { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}
.faq-trigger:hover { color: var(--secondary); }
.faq-trigger i {
    font-size: 0.75rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
    min-width: 16px;
}
.faq-item.active .faq-trigger i { transform: rotate(45deg); }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-body { max-height: 800px; }
.faq-body p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.85rem;
    color: #6b6f73;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.section-contact { background: var(--white); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}
.contact-info-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 1.5rem;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(208,69,111,0.1), rgba(17,149,161,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
}
.contact-info-item h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.85rem; color: #6b6f73; }
.contact-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid rgba(197,195,195,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    transition: var(--transition);
}
.contact-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.contact-form {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197,195,195,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(197,195,195,0.4);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(17,149,161,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--accent), #c03d63);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208,69,111,0.3);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(208,69,111,0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--white); }
.footer-brand > p { font-size: 0.8rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.75rem; font-style: italic; color: rgba(255,255,255,0.4); }

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links li,
.footer-contact li {
    font-size: 0.8rem;
    padding: 0.3rem 0;
}
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; }
.footer-contact li i { font-size: 0.7rem; color: var(--accent); }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ========================================
   BACK TO TOP & FLOATING CTA
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-cta.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-cta button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(208,69,111,0.4);
    transition: all 0.3s ease;
    animation: cta-pulse 3s ease-in-out infinite;
}
.floating-cta button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(208,69,111,0.5);
}
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(208,69,111,0.4); }
    50% { box-shadow: 0 4px 30px rgba(208,69,111,0.6), 0 0 0 8px rgba(208,69,111,0.1); }
}


/* ========================================
   ANIMATIONS
   ======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0ms),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0ms);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Notification */
.notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    max-width: 380px;
}
.notification.show { transform: translateX(0); }
.notification-success { background: var(--secondary); }
.notification-error { background: var(--accent); }
.notification-info { background: var(--primary-dark); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .comparison-block { grid-template-columns: 1fr; }
    .comparison-divider { padding: 1rem; }
    .comparison-divider span { display: block; }
    .service-block { grid-template-columns: 1fr; }
    .service-block-header { flex-direction: row; align-items: center; }
    .service-icon-wrap { width: 80px; height: 80px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    .preloader-title { letter-spacing: 0.2em; }
    .preloader-logo img { width: 60px; height: 60px; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.25rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    }
    .nav-menu .nav-link { color: var(--primary-dark); }
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active { color: var(--accent); }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1rem; }
    .hamburger { display: flex; }
    .btn-cta-nav { display: none; }

    section { padding: 4rem 0; }
    .hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-trust { flex-direction: column; gap: 1.5rem; }
    .trust-divider { width: 40px; height: 1px; }

    .problem-grid { grid-template-columns: 1fr; }
    .comparison-block { grid-template-columns: 1fr; }
    .why-question { flex-direction: column; gap: 1rem; text-align: center; }
    .question-arrow { transform: rotate(0deg); }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .paths-grid { grid-template-columns: 1fr; }
    .service-sub-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-description { font-size: 0.85rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions button { width: 100%; justify-content: center; }
    .floating-cta span { display: none; }
    .floating-cta button { padding: 0.85rem; border-radius: 50%; }
    .floating-cta button i { font-size: 1.1rem; }
    .contact-form { padding: 1.5rem; }
    .approach-quote { padding: 2rem 1.5rem; }
    .approach-quote blockquote { font-size: 0.95rem; }
    .why-closing { padding: 2rem 1.5rem; }
    .section-label { font-size: 0.7rem; }
    h2 { font-size: 1.5rem; }
    .team-card-image img { width: 110px; height: 110px; }
    .faq-trigger { padding: 1rem; font-size: 0.85rem; }

    .paths-grid .path-card { padding: 1.5rem; }
}


