/* ============================================
   CsillogoTiszta Kft. - Neumorphism Design
   ============================================ */

/* ── CSS Variables ── */
:root {
    /* Core Neumorphism Colors */
    --bg-base: #e0e5ec;
    --bg-dark: #c8ccd4;
    --bg-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;
    
    /* Brand Colors */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7dff;
    --secondary: #e0e5ec;
    --accent: #ff6b9d;
    --accent-dark: #e0558a;
    
    /* Text Colors */
    --text-primary: #31344b;
    --text-secondary: #5a5d7a;
    --text-muted: #8e91a4;
    --text-light: #ffffff;
    
    /* Neumorphism Shadows */
    --neu-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neu-shadow-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-shadow-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --neu-shadow-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --neu-shadow-inset-sm: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Base ── */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: var(--bg-base);
    border-radius: 50px;
    box-shadow: var(--neu-shadow-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.title-accent {
    color: var(--primary);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Neumorphic Buttons ── */
.btn-neu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary-neu {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 6px 6px 12px rgba(109, 93, 252, 0.35), -2px -2px 8px rgba(139, 125, 255, 0.25);
}

.btn-primary-neu:hover {
    background: var(--primary-dark);
    box-shadow: 4px 4px 8px rgba(109, 93, 252, 0.45), -1px -1px 6px rgba(139, 125, 255, 0.3);
    transform: translateY(-2px);
}

.btn-primary-neu:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(90, 75, 212, 0.4), inset -2px -2px 4px rgba(139, 125, 255, 0.2);
}

.btn-secondary-neu {
    background: var(--bg-base);
    color: var(--text-primary);
    box-shadow: var(--neu-shadow-sm);
}

.btn-secondary-neu:hover {
    box-shadow: var(--neu-shadow);
    transform: translateY(-2px);
}

.btn-secondary-neu:active {
    box-shadow: var(--neu-shadow-inset-sm);
    transform: translateY(0);
}

.btn-ghost-neu {
    background: var(--bg-base);
    color: var(--primary);
    box-shadow: var(--neu-shadow-sm);
}

.btn-ghost-neu:hover {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 6px 6px 12px rgba(109, 93, 252, 0.35), -2px -2px 8px rgba(139, 125, 255, 0.25);
    transform: translateY(-2px);
}

.btn-card-neu {
    background: var(--bg-base);
    color: var(--primary);
    box-shadow: var(--neu-shadow-sm);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-card-neu:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(109, 93, 252, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ── Header / Navigation ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(224, 229, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(163, 177, 198, 0.15);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(163, 177, 198, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
}

.nav-link-cta {
    background: var(--primary) !important;
    color: var(--text-light) !important;
    box-shadow: 4px 4px 8px rgba(109, 93, 252, 0.3), -2px -2px 6px rgba(139, 125, 255, 0.2) !important;
    margin-left: 12px;
}

.nav-link-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    width: 22px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--bg-base);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    box-shadow: var(--neu-shadow-lg);
    opacity: 0.5;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    box-shadow: var(--neu-shadow);
    opacity: 0.4;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 10%;
    box-shadow: var(--neu-shadow-sm);
    opacity: 0.3;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    box-shadow: var(--neu-shadow-sm);
    opacity: 0.35;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-base);
    border-radius: 50px;
    box-shadow: var(--neu-shadow-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-title .title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border: 3px solid var(--bg-base);
    margin-left: -10px;
    box-shadow: 2px 2px 6px var(--shadow-dark);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    color: var(--text-primary);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-card {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--neu-shadow-lg);
    position: relative;
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.1), rgba(255, 107, 157, 0.05));
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-base);
    border-radius: var(--border-radius);
    box-shadow: var(--neu-shadow);
    z-index: 2;
}

.hero-float-card div {
    display: flex;
    flex-direction: column;
}

.hero-float-card strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-float-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.float-card-1 {
    top: 20px;
    left: -30px;
    animation: float 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 30px;
    right: -20px;
    animation: float 5s ease-in-out 1.5s infinite;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-mouse {
    width: 28px;
    height: 42px;
    border-radius: 14px;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    border-radius: 2px;
    background: var(--primary);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* ── Services Section ── */
.services-section {
    background: var(--bg-base);
}

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

.service-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--neu-shadow);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--neu-shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    box-shadow: var(--neu-shadow-inset-sm);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

/* ── About Section ── */
.about-section {
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-shadow-lg);
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.about-img-secondary {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-shadow);
    width: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 8px 8px 16px rgba(109, 93, 252, 0.35), -4px -4px 12px rgba(139, 125, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-label {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Statistics Section ── */
.stats-section {
    background: var(--bg-base);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: var(--transition-slow);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--neu-shadow-lg);
}

.stat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ── Gallery Band ── */
.gallery-section {
    padding: 0;
    overflow: hidden;
}

.gallery-band {
    display: flex;
    gap: 0;
    height: 280px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: saturate(0.7);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(109, 93, 252, 0.08), rgba(109, 93, 252, 0.15));
    pointer-events: none;
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: transparent;
}

/* ── Case Studies Section ── */
.cases-section {
    background: var(--bg-base);
}

.cases-grid {
    display: grid;
    gap: 32px;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neu-shadow);
    overflow: hidden;
    transition: var(--transition-slow);
}

.case-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.case-card:nth-child(even) .case-image {
    order: 2;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-lg);
}

.case-image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.case-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.case-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-stats {
    display: flex;
    gap: 24px;
}

.case-stat {
    display: flex;
    flex-direction: column;
}

.case-stat strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.case-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Testimonials Section ── */
.testimonials-section {
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--neu-shadow);
    transition: var(--transition-slow);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-lg);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 3px 3px 6px var(--shadow-dark);
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

/* ── Team Section ── */
.team-section {
    background: var(--bg-base);
}

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

.team-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 36px 20px;
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--neu-shadow-lg);
}

.team-avatar {
    margin-bottom: 20px;
}

.team-avatar-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.15);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Trust Section ── */
.trust-section {
    overflow: hidden;
}

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

.trust-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: var(--transition-slow);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-shadow-lg);
}

.trust-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Contact Section ── */
.contact-section {
    background: var(--bg-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--neu-shadow);
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-base);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--neu-shadow-inset-sm);
    padding: 14px 16px;
    transition: var(--transition);
}

.input-wrap:focus-within {
    box-shadow: var(--neu-shadow-inset), 0 0 0 2px rgba(109, 93, 252, 0.2);
}

.input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.input-wrap input::placeholder {
    color: var(--text-muted);
}

textarea {
    width: 100%;
    border: none;
    background: var(--bg-base);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--neu-shadow-inset-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: var(--transition);
}

textarea::placeholder {
    color: var(--text-muted);
}

textarea:focus {
    box-shadow: var(--neu-shadow-inset), 0 0 0 2px rgba(109, 93, 252, 0.2);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 6px;
    min-height: 1.2em;
}

.form-consent {
    margin-bottom: 28px;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-wrap input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    box-shadow: 2px 2px 4px rgba(109, 93, 252, 0.3);
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Contact Info */
.contact-info-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--neu-shadow);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(163, 177, 198, 0.2);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--bg-base);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(163, 177, 198, 0.2);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(49, 52, 75, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-base);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--neu-shadow-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    box-shadow: var(--neu-shadow-inset-sm);
    color: var(--accent);
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.modal-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-body ul {
    margin-bottom: 24px;
}

.modal-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.modal-body .modal-price {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-base);
    border-radius: var(--border-radius);
    box-shadow: var(--neu-shadow-sm);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: var(--neu-shadow-inset-sm);
    transform: translateY(-2px);
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neu-shadow-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--neu-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-base);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(163, 177, 198, 0.4);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav-link-cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .float-card-1 {
        left: 10px;
        top: 10px;
    }
    
    .float-card-2 {
        right: 10px;
        bottom: 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        height: 380px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-label {
        text-align: center;
        display: block;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-band {
        height: 200px;
    }
    
    .case-card,
    .case-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .case-card:nth-child(even) .case-image {
        order: 0;
    }
    
    .case-image {
        min-height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-band {
        flex-direction: column;
        height: auto;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .contact-info-card {
        padding: 24px;
    }
    
    .modal-body {
        padding: 28px 20px;
    }
    
    .about-images {
        height: 320px;
    }
    
    .about-img-main {
        width: 85%;
    }
    
    .about-img-secondary {
        width: 60%;
    }
}

/* ── Print Styles ── */
@media print {
    .header,
    .cookie-banner,
    .back-to-top,
    .modal-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 30px 0;
    }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
