:root {
    --primary: #6c5ce7;
    --dark: #0f0c29;
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #d63031 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

/* Navigation */
header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; padding: 0 20px; }
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}
.logo-img { height: 38px; width: auto; display: block; margin-right: 9px; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; }
.nav-links {
    position: relative;
    align-items: center;
    gap: 2px;
}
.nav-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.38), 0 0 28px rgba(30, 64, 175, 0.26);
    transform: translate(0, 0) scale(0.9);
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    z-index: 0;
}
nav ul li { margin-left: 20px; }
nav ul li a {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 7px 12px;
    border-radius: 50px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

nav ul li a.liquid-active,
nav ul li a:hover,
nav ul li a:focus-visible {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.35);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(108, 92, 231, 0.28);
    border-radius: 10px;
    background: rgba(108, 92, 231, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--dark);
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease;
}

.nav-toggle.active {
    background: rgba(108, 92, 231, 0.18);
    border-color: rgba(108, 92, 231, 0.5);
}

.nav-toggle.active span {
    background: var(--primary);
}

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

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

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

@media (max-width: 767px) {
    nav {
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 14px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(108, 92, 231, 0.2);
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(15, 12, 41, 0.14);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .nav-liquid {
        display: none;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links li a {
        display: block;
        padding: 10px 12px;
        border-radius: 9px;
        color: #000000;
    }

    .nav-links li a:hover {
        background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
        color: #ffffff;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Hero Section с 3D */
#hero { 
    --mx: 0px;
    --my: 0px;
    height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #ffffff;
    position: relative; 
    color: #0a0a0a; 
    text-align: center; 
    padding: 220px 20px 120px;
    overflow: hidden;
    perspective: 1200px;
}

#hero-particle-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.hero-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    transform: translate3d(calc(var(--mx) * -0.35), calc(var(--my) * -0.35), 0);
    transition: transform 180ms ease-out;
    will-change: transform;
}

.hero-glow,
.hero-grid,
.hero-vignette,
.hero-ring {
    position: absolute;
}

.hero-glow {
    width: 42vw;
    height: 42vw;
    min-width: 280px;
    min-height: 280px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.74;
}

.hero-glow-left {
    top: -6%;
    left: -10%;
    background: radial-gradient(circle, rgba(132, 189, 255, 0.42) 0%, rgba(132, 189, 255, 0.1) 58%, transparent 74%);
    animation: heroFloat 12s ease-in-out infinite;
}

.hero-glow-right {
    right: -10%;
    bottom: -8%;
    background: radial-gradient(circle, rgba(255, 153, 177, 0.36) 0%, rgba(255, 153, 177, 0.08) 56%, transparent 72%);
    animation: heroFloat 15s ease-in-out infinite reverse;
}

.hero-grid {
    left: -5%;
    right: -5%;
    bottom: -24%;
    height: 64%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 74px 74px;
    transform: rotateX(76deg);
    transform-origin: center bottom;
    opacity: 0.18;
    mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent 72%);
}

.hero-vignette {
    inset: 0;
    background: radial-gradient(circle at center, transparent 28%, rgba(20, 34, 66, 0.14) 76%, rgba(18, 30, 58, 0.28) 100%);
}

.hero-ring {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    opacity: 0.4;
}

.hero-ring-one {
    width: 440px;
    height: 440px;
    right: -130px;
    top: -110px;
    animation: heroFloat 14s ease-in-out infinite;
}

.hero-ring-two {
    width: 320px;
    height: 320px;
    left: -90px;
    bottom: -70px;
    animation: heroFloat 16s ease-in-out infinite reverse;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 940px; 
    padding: 40px 44px;
    pointer-events: none;
    transform: translate3d(calc(var(--mx) * 0.22), calc(var(--my) * 0.22), 0);
    transition: transform 180ms ease-out;
    will-change: transform;
}

h1 { font-size: clamp(3.6rem, 11vw, 6.8rem); margin-bottom: 12px; line-height: 0.98; font-weight: 700; letter-spacing: -0.04em; text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38); }
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(245, 248, 255, 0.55);
    text-shadow: 0 0 18px rgba(245, 248, 255, 0.22);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-bottom: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.typing-container { 
    font-size: clamp(1.45rem, 6vw, 2.4rem); 
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-height: 4rem; 
    margin-bottom: 26px;
    text-shadow: none;
}

.hero-p { 
    font-size: clamp(1.05rem, 2.5vw, 1.25rem); 
    max-width: 700px; 
    margin: 0 auto 34px auto;
    opacity: 1;
    color: #444444;
    text-shadow: none;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.btn-main:not(.hero-cta),
.btn-read-more,
.btn-contact,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    padding: 16px 34px;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.18);
    transition: all 0.28s ease;
    cursor: pointer;
    pointer-events: auto;
}

.btn-main:not(.hero-cta):hover,
.btn-read-more:hover,
.btn-contact:hover,
.btn-secondary:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(108, 92, 231, 0.3);
}

.hero-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    padding-bottom: 4px;
    pointer-events: auto;
    transition: 0.3s;
}

.hero-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* Contact Form Button */
.contact-form .btn-main {
    width: auto;
    display: inline-flex;
    margin: 20px auto 0;
    padding: 16px 34px;
}

/* Read More Button */
.btn-read-more {
    margin-top: 50px;
}

#about .btn-read-more {
    border-color: rgba(73, 107, 201, 0.45);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    color: #3555b4 !important;
    box-shadow: 0 10px 22px rgba(53, 85, 180, 0.16);
}

#about .btn-read-more:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88) 0%, rgba(168, 85, 247, 0.84) 100%);
    border-color: rgba(72, 99, 190, 0.85);
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(78, 64, 175, 0.24);
}

.btn-read-more .btn-arrow {
    font-size: 1.05em;
    transition: transform 0.28s ease;
}

.btn-read-more:hover .btn-arrow {
    transform: translateX(5px);
}

/* Анимация только для Hero */
.fade-in-text { animation: fadeInUp 1s ease forwards; animation-delay: 0.6s; }
.fade-in-btn { animation: fadeInUp 1s ease forwards; animation-delay: 1.1s; opacity: 0; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -22px, 0); }
}

/* Hero Title */
.hero-title {
    font-size: 60px;
    line-height: 1.2;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #D2691E;
    color: white;
    font-size: 18px;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        padding: 30px 22px;
        border-radius: 28px;
    }

    .hero-grid {
        height: 54%;
        background-size: 56px 56px;
        opacity: 0.14;
    }

    .hero-ring-one {
        width: 310px;
        height: 310px;
        right: -140px;
        top: -110px;
    }

    .hero-ring-two {
        width: 250px;
        height: 250px;
        left: -120px;
        bottom: -120px;
    }

    .hero-badge {
        letter-spacing: 0.14em;
        font-size: 0.74rem;
    }
}

/* УВЕЛИЧЕННЫЕ ЗАГОЛОВКИ */
h2 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    margin-bottom: 60px; 
    font-weight: 700; 
}

.section { padding: 120px 20px; text-align: center; }
.grey-bg { background: #f9f9fb; }
.container { max-width: 1100px; margin: auto; }

.section-subtitle {
    max-width: 760px;
    margin: -28px auto 52px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #677189;
    font-weight: 400;
    font-style: italic;
}

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto 48px;
    text-align: left;
}

.about-photo {
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 0 5px rgba(108, 92, 231, 0.28),
        0 0 0 9px rgba(168, 85, 247, 0.11),
        0 20px 48px rgba(15, 23, 42, 0.16);
}

.about-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 8px;
}



.about-text {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.9;
    color: #4d5568;
}

@media (max-width: 680px) {
    .about-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-body {
        align-items: center;
    }
}

/* Contact Section Subtitle */
#contact .section-subtitle {
    margin: -18px auto 60px;
}

/* Skills Section Subtitle */
#skills .section-subtitle {
    margin-bottom: 50px;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
}
.skill-box {
    width: 190px;
    height: 190px;
    perspective: 1000px;
    position: relative;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

@media (max-width: 1100px) {
    .skills-container {
        max-width: 100%;
    }
}
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.6s ease-in-out;
    transform-style: preserve-3d;
}
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.card-front {
    background: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.card-front i {
    font-size: 3rem;
    margin-bottom: 15px;
}
.card-front span {
    font-size: 1rem;
    font-weight: 500;
    color: #3f3f3f;
}
.card-front h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #3f3f3f;
}

.ai-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.ai-logo-wrap img {
    width: 60px;
    height: 60px;
    display: block;
}
.card-back {
    background: linear-gradient(135deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%);
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.card-back p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}
.skills-container .skill-card:nth-child(1) .card-back { background: linear-gradient(130deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(2) .card-back { background: linear-gradient(40deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(3) .card-back { background: linear-gradient(220deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(4) .card-back { background: linear-gradient(300deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(5) .card-back { background: linear-gradient(85deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(6) .card-back { background: linear-gradient(175deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(7) .card-back { background: linear-gradient(260deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(8) .card-back { background: linear-gradient(335deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
.skills-container .skill-card:nth-child(9) .card-back { background: linear-gradient(25deg, #6c5ce7 0%, #8a4bcf 52%, #d63031 100%); }
/* Click-to-flip animation */
.skill-card.flipped .card-inner {
    transform: rotateY(180deg) scale(1.1);
}

/* Grid blocks */
.steps-grid, .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; align-items: stretch; }
.steps-cta-wrap { display: flex; justify-content: center; margin-top: 92px; }

#steps .steps-cta-wrap .btn-main {
    border-color: rgba(73, 107, 201, 0.42);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    color: #3b58b0 !important;
    box-shadow: 0 10px 24px rgba(62, 84, 178, 0.16);
}

#steps .steps-cta-wrap .btn-main:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.86) 0%, rgba(168, 85, 247, 0.82) 100%);
    border-color: rgba(73, 107, 201, 0.78);
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(88, 79, 186, 0.24);
}
.step-card, .service-card { background: white; padding: 40px; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: left; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.step-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(148, 182, 255, 0.4);
    box-shadow: 0 14px 35px rgba(29, 52, 97, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease;
}

.step-card::after {
    display: none;
}

.step-card:hover {
    transform: translateY(-10px) rotateY(-5deg);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    border-color: rgba(108, 92, 231, 0.4);
}

.step-icon {
    font-size: 1.45rem;
    color: #5f7fcf;
    margin-bottom: 12px;
    transition: all 0.35s ease;
}

.step-card h3 {
    color: #2f3d66;
    margin: 0 0 12px;
}

.step-card p {
    color: #566688;
    line-height: 1.65;
    transition: color 0.35s ease;
}

.step-card:hover .step-icon,
.step-card:hover .step-num {
    background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.step-card:hover h3,
.step-card:hover p {
    color: #6c5ce7;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 8px 0;
    font-size: 0.97rem;
    font-weight: 600;
    color: #6c5ce7;
    text-decoration: none;
    border: none;
    background: transparent;
    border-bottom: 2px solid rgba(108, 92, 231, 0.25);
    transition: color 0.25s, border-color 0.25s, gap 0.25s;
    cursor: pointer;
}

.service-cta:hover {
    color: #a855f7;
    border-bottom-color: #a855f7;
    gap: 12px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193, 225, 255, 0.18), transparent 68%);
    pointer-events: none;
}

.card {
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease-out;
}

.card:hover {
    box-shadow:
        0 18px 38px rgba(30, 64, 175, 0.20),
        0 10px 24px rgba(168, 85, 247, 0.18),
        0 0 0 1px rgba(168, 85, 247, 0.14);
}

.service-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #304685;
    font-size: 1.38rem;
    line-height: 1.3;
    margin: 0;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.12), rgba(143, 194, 255, 0.18));
    color: #4f6fd8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.05rem;
}

/* Service card icon color variants */
.services-grid .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.24));
    color: #1d4ed8;
}

.services-grid .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(249, 115, 22, 0.2));
    color: #be123c;
}

.services-grid .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.22), rgba(20, 184, 166, 0.2));
    color: #0f766e;
}

.service-tagline {
    color: #6a738f;
    font-size: 1.02rem;
    line-height: 1.55;
    margin: -2px 0 2px;
}

.service-tagline em {
    font-style: italic;
}

.service-list {
    margin: 0;
    padding-left: 20px;
    color: #51607f;
    line-height: 1.72;
    width: 100%;
}

.service-card .service-list {
    margin-bottom: 14px;
    min-height: 0;
}

.service-card .service-cta {
    margin-top: 24px;
    align-self: flex-end;
}

/* Service Modals */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
    overflow-y: auto;
}

.service-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 24px 64px rgba(5, 10, 22, 0.45);
    transform: translateY(12px) scale(0.97);
    transition: transform 0.32s ease;
}

.service-modal-overlay.is-open .service-modal {
    transform: translateY(0) scale(1);
}

.service-modal h3 {
    margin: 0 34px 20px 0;
    color: #1f2937;
    font-size: 1.55rem;
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: #ffffff;
    color: #1f2937;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.pricing-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-6px);
    animation: pricingGlowPulse 1.5s ease-in-out infinite;
}

@keyframes pricingGlowPulse {
    0% {
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12), 0 0 0 0 rgba(168, 85, 247, 0.2);
    }
    100% {
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.17), 0 0 0 4px rgba(168, 85, 247, 0.14);
    }
}

.pricing-plan-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.plan-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: #ffffff;
    background: #22c55e;
}

.pricing-item h4 {
    margin: 0;
    color: #111827;
    font-size: 1.02rem;
    font-weight: 700;
}

.pricing-subtitle {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.55;
}

.price {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 1.02rem;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 9px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #374151;
    font-size: 0.87rem;
    line-height: 1.5;
}

.pricing-features i {
    margin-top: 3px;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-item.is-featured {
    border-color: rgba(168, 85, 247, 0.85);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.28), 0 14px 26px rgba(88, 79, 186, 0.2);
}

.pricing-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
}

.modal-quote-btn {
    width: 100%;
    margin-top: auto;
    border: none;
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
    box-shadow: 0 6px 18px rgba(104, 92, 231, 0.28);
    cursor: pointer;
    transition: box-shadow 0.22s ease, opacity 0.22s ease;
}

.modal-quote-btn span {
    margin-left: 4px;
}

.modal-quote-btn:hover {
    opacity: 0.88;
    box-shadow: 0 10px 24px rgba(104, 92, 231, 0.42);
}

.pricing-item.is-featured .modal-quote-btn {
    box-shadow: 0 10px 24px rgba(104, 92, 231, 0.4);
}

.design-modal {
    font-family: "Montserrat", "Inter", sans-serif;
    background: #ffffff;
    border: 1px solid rgba(168, 85, 247, 0.16);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
}

.design-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.design-pricing-grid .pricing-item {
    border: 1px solid rgba(168, 85, 247, 0.45);
    background: #ffffff;
    background-image: none;
}

.design-pricing-grid .pricing-item:hover {
    box-shadow: 0 14px 28px rgba(88, 79, 186, 0.2), 0 0 0 2px rgba(168, 85, 247, 0.12);
}

.extra-modal {
    width: min(1320px, 100%);
    font-family: "Montserrat", "Inter", sans-serif;
    background: #ffffff;
    border: 1px solid rgba(168, 85, 247, 0.14);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
}

.extra-modal h3 {
    font-family: "Montserrat", "Inter", sans-serif;
    font-weight: 700;
}

.extra-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.extra-pricing-grid .pricing-item {
    border: 1px solid rgba(168, 85, 247, 0.42);
    background: #ffffff;
    background-image: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.extra-pricing-grid .pricing-item:hover {
    box-shadow: 0 14px 28px rgba(88, 79, 186, 0.18), 0 0 0 2px rgba(168, 85, 247, 0.1);
}

.extra-pricing-grid .modal-quote-btn {
    background: linear-gradient(to right, #3b5bdb, #a855f7);
    box-shadow: 0 8px 20px rgba(104, 92, 231, 0.28);
}

.extra-pricing-grid .modal-quote-btn:hover {
    opacity: 0.92;
    box-shadow: 0 12px 26px rgba(104, 92, 231, 0.36);
}

body.service-modal-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .design-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .extra-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .service-modal-overlay {
        padding: 16px;
    }

    .service-modal {
        padding: 22px 16px;
    }

    .service-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .service-pricing-grid .pricing-item {
        width: 100%;
    }
}

.service-list li {
    margin-bottom: 12px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list strong {
    color: #2f3d66;
}

@media (max-width: 980px) {
    .service-card .service-list {
        min-height: 0;
    }
}

.btn-service-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    position: static;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #2f2f2f;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease, opacity 0.2s ease;
    box-shadow: none;
}

.btn-service-order::before {
    content: none;
}

.btn-service-order::after {
    content: none;
}

.btn-service-order:hover {
    color: var(--primary);
    transform: none;
    opacity: 0.72;
}

.btn-service-order:hover::before {
    content: none;
}

/* Step Number Animation */
.step-num { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: #9bb1e7; 
    margin-bottom: 20px; 
    transition: all 0.35s ease;
}
.step-card:hover .step-num { 
    transform: scale(1.18) translateY(-2px); 
    text-shadow: 0 5px 15px rgba(108, 92, 231, 0.18);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
    max-width: 1040px;
    margin: 42px auto 0;
}

.contact-form-panel,
.contact-personal-panel {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.contact-form-panel {
    background: linear-gradient(160deg, #10192d 0%, #1a2336 100%);
    border: 1px solid rgba(139, 162, 214, 0.24);
    box-shadow: 0 16px 38px rgba(9, 13, 23, 0.35);
}

.contact-form-panel h3 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    color: #f2f5ff;
}

.contact-form-ui {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-field {
    display: block;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8deeb;
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    font-size: 0.98rem;
    color: #2d3550;
    background: #fbfcff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-field input:hover,
.contact-field textarea:hover {
    border-color: rgba(97, 106, 214, 0.46);
    box-shadow: 0 8px 18px rgba(108, 92, 231, 0.12);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(97, 106, 214, 0.7);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.14), 0 10px 22px rgba(108, 92, 231, 0.16);
    background: #ffffff;
}

.btn-submit-message {
    margin-top: 6px;
    width: 48%;
    align-self: flex-end;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 11px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: background 0.26s ease, color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.btn-submit-message:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(108, 92, 231, 0.38);
}

.contact-personal-panel {
    background: linear-gradient(160deg, #10192d 0%, #1a2336 100%);
    border: 1px solid rgba(139, 162, 214, 0.24);
    box-shadow: 0 16px 38px rgba(9, 13, 23, 0.35);
    color: #dbe4ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.contact-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.contact-photo-square {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 24px rgba(14, 20, 35, 0.45);
}

.contact-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-status {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #c9d3ef;
    font-size: 0.88rem;
    text-align: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: onlinePulse 1.8s ease-out infinite;
}

@keyframes onlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.contact-personal-panel h4 {
    margin: 0;
    font-size: 1.36rem;
    line-height: 1.45;
    color: #f2f5ff;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#contact .contact-actions .btn-wa-cta,
#contact .contact-actions .btn-email-cta {
    width: 220px;
    padding: 12px 20px;
    font-size: 0.93rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
}

.btn-wa-action {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.3);
}

.btn-wa-action:hover {
    box-shadow: 0 16px 30px rgba(34, 197, 94, 0.4);
}

.btn-email-action {
    background: linear-gradient(135deg, #1e40af 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(108, 92, 231, 0.32);
}

.btn-email-action:hover {
    box-shadow: 0 16px 30px rgba(108, 92, 231, 0.42);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.modal-content { background: white; padding: 50px; border-radius: 30px; text-align: center; max-width: 450px; width: 90%; }
.modal-content i {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.modal-content h2,
.modal-content h3 {
    margin: 0 0 16px;
    font-size: clamp(2.3rem, 6.4vw, 4rem);
    line-height: 1.04;
    color: #2f3338;
}

.modal-content p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4b5563;
}

.modal-content .btn-main {
    margin-top: 28px;
    transition: none;
    animation: none;
    transform: none;
}

.modal-content .btn-main:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.18);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(148, 182, 255, 0.4);
    box-shadow: 0 14px 35px rgba(29, 52, 97, 0.08);
    text-align: left;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #8fc2ff 0%, #6c5ce7 52%, #ff8cab 100%);
}

.benefit-item::after {
    display: none;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(36, 64, 122, 0.16);
    border-color: rgba(108, 92, 231, 0.34);
}

.benefit-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #304685;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item h3 i {
    color: #6faeff;
}

.benefit-item p {
    color: #51607f;
    line-height: 1.6;
}

.benefit-item:nth-child(2n)::before {
    background: linear-gradient(180deg, #7ed6c6 0%, #6c5ce7 55%, #8fc2ff 100%);
}

.benefit-item:nth-child(3n)::before {
    background: linear-gradient(180deg, #ffb38f 0%, #ff8cab 48%, #6c5ce7 100%);
}

.benefit-typed {
    display: inline-block;
    min-height: 1.2em;
    letter-spacing: 0.01em;
}

.benefit-typed.is-retyping {
    opacity: 0.9;
}

.benefit-typed.typing-cursor::after {
    content: '▍';
    margin-left: 3px;
    color: #6c5ce7;
    animation: blinkCursor 0.75s steps(1) infinite;
}

@keyframes blinkCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0c29 100%);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 2px solid var(--primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #a29bfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cookie-settings-link {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-settings-link:hover {
    opacity: 0.78;
}

.cookie-settings-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 850px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-wrapper { flex-direction: column; align-items: center; }
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--gradient);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 34px rgba(108, 92, 231, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.hero-cta::before {
    content: "";
    position: absolute;
    top: -135%;
    left: -32%;
    width: 48%;
    height: 360%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 100%);
    transform: rotate(24deg);
    opacity: 0;
    pointer-events: none;
}

.hero-cta::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    opacity: 0.65;
    pointer-events: none;
}

.hero-cta:hover::before {
    left: 120%;
    opacity: 1;
    transition: left 760ms ease, opacity 240ms ease;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(108, 92, 231, 0.36), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* Availability Status Indicator */
.availability-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2ecc71;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulse-glow 2s infinite;
}

.status-text {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    line-height: 1.4;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* ─── Contact Page Card (whatsappcontact.html) ───────────────────────────── */

body.contact-page {
    min-height: 100vh;
    background: #f5f6fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow-x: hidden;
}

.back-nav {
    position: fixed;
    top: 24px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    transition: color 0.22s ease;
    z-index: 100;
}

.back-nav i {
    font-size: 0.82rem;
}

.back-nav:hover {
    color: var(--primary);
}

.contact-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
}

.contact-card {
    display: flex;
    max-width: 820px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 12, 41, 0.13), 0 4px 16px rgba(15, 12, 41, 0.06);
    background: #ffffff;
}

/* Left column */
.contact-card__left {
    width: 40%;
    background: linear-gradient(160deg, #f0eeff 0%, #fce4ec 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 32px;
    gap: 22px;
    text-align: center;
}

.contact-card__photo-wrap {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #6c5ce7 0%, #d63031 100%);
    flex-shrink: 0;
}

.contact-card__photo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
}

.contact-card__left .availability-status {
    margin: 0;
}

.contact-card__tagline {
    font-size: 0.88rem;
    color: #888;
    font-style: italic;
    line-height: 1.65;
    margin: 0;
}

/* Right column */
.contact-card__right {
    width: 60%;
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.contact-card__title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0f0c29;
    margin: 0;
    line-height: 1.1;
}

.contact-card__action {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.contact-card__desc {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

.contact-card__btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: 6px;
}

.btn-wa-cta,
.btn-email-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    width: 260px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.26s ease, color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
    cursor: pointer;
}

.btn-wa-cta {
    background: transparent;
    color: #25d366 !important;
    border: 2px solid #25d366;
    box-shadow: none;
}

.btn-wa-cta i {
    font-size: 1.15rem;
}

.btn-wa-cta:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-email-cta {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-email-cta i {
    font-size: 1.05rem;
}

.btn-email-cta:hover {
    background: var(--gradient);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(108, 92, 231, 0.38);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 680px) {
    .contact-card {
        flex-direction: column;
        border-radius: 20px;
    }

    .contact-card__left,
    .contact-card__right {
        width: 100%;
    }

    .contact-card__left {
        padding: 44px 28px 32px;
    }

    .contact-card__right {
        padding: 36px 28px 48px;
        align-items: center;
        text-align: center;
    }

    .contact-card__btns {
        align-items: center;
    }

    .btn-wa-cta,
    .btn-email-cta {
        width: 100%;
    }
}

/* GDPR cookie consent banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 12, 41, 0.96);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(8, 6, 24, 0.45);
    z-index: 2500;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.45;
    color: #ffffff;
}

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

.cookie-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #6c5ce7 0%, #d63082 100%);
    box-shadow: 0 8px 20px rgba(214, 48, 130, 0.35);
}

.cookie-btn-decline {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.32);
}

@media (max-width: 740px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}