/* Reset and Base Styles */
:root {
    --navbar-height: 64px;
    --color-primary: #f85c70;
    --color-primary-strong: #d94b60;
    --color-secondary: #2d3440;
    --color-accent: #fabec0;
    --color-accent-soft: #ffc6c3;
    --color-muted: #898989;
    --color-background: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: #fff8f9;
    --color-gradient-soft: linear-gradient(180deg, #ffffff 0%, #fff8f9 50%, #ffc6c3 110%);
    --loader-steps: 10;
    --loader-duration: 4800ms;
    --loader-crayon: var(--color-secondary);
    --loader-color-01: #f85c70;
    --loader-color-02: #fa6f85;
    --loader-color-03: #fb8195;
    --loader-color-04: #fc93a6;
    --loader-color-05: #fd9fb0;
    --loader-color-06: #fdaac0;
    --loader-color-07: #ffb8c9;
    --loader-color-08: #ffc6d2;
    --loader-color-09: #ffd3dc;
    --loader-color-10: #ffe1e6;
    --loader-color-11: #fff1f4;
}

:root {
    --loader-bg-01-a: no-repeat left 0% top / 10% 0% linear-gradient(to right, var(--loader-color-01), var(--loader-color-02));
    --loader-bg-01-b: no-repeat left 0% top / 10% 100% linear-gradient(to right, var(--loader-color-01), var(--loader-color-02));
    --loader-bg-02-a: no-repeat left 10% bottom / 10% 0% linear-gradient(to right, var(--loader-color-02), var(--loader-color-03));
    --loader-bg-02-b: no-repeat left 10% bottom / 10% 100% linear-gradient(to right, var(--loader-color-02), var(--loader-color-03));
    --loader-bg-03-a: no-repeat left 20% top / 10% 0% linear-gradient(to right, var(--loader-color-03), var(--loader-color-04));
    --loader-bg-03-b: no-repeat left 20% top / 10% 100% linear-gradient(to right, var(--loader-color-03), var(--loader-color-04));
    --loader-bg-04-a: no-repeat left 30% bottom / 10% 0% linear-gradient(to right, var(--loader-color-04), var(--loader-color-05));
    --loader-bg-04-b: no-repeat left 30% bottom / 10% 100% linear-gradient(to right, var(--loader-color-04), var(--loader-color-05));
    --loader-bg-05-a: no-repeat left 40% top / 10% 0% linear-gradient(to right, var(--loader-color-05), var(--loader-color-06));
    --loader-bg-05-b: no-repeat left 40% top / 10% 100% linear-gradient(to right, var(--loader-color-05), var(--loader-color-06));
    --loader-bg-06-a: no-repeat left 50% bottom / 10% 0% linear-gradient(to right, var(--loader-color-06), var(--loader-color-07));
    --loader-bg-06-b: no-repeat left 50% bottom / 10% 100% linear-gradient(to right, var(--loader-color-06), var(--loader-color-07));
    --loader-bg-07-a: no-repeat left 60% top / 10% 0% linear-gradient(to right, var(--loader-color-07), var(--loader-color-08));
    --loader-bg-07-b: no-repeat left 60% top / 10% 100% linear-gradient(to right, var(--loader-color-07), var(--loader-color-08));
    --loader-bg-08-a: no-repeat left 70% bottom / 10% 0% linear-gradient(to right, var(--loader-color-08), var(--loader-color-09));
    --loader-bg-08-b: no-repeat left 70% bottom / 10% 100% linear-gradient(to right, var(--loader-color-08), var(--loader-color-09));
    --loader-bg-09-a: no-repeat left 80% top / 10% 0% linear-gradient(to right, var(--loader-color-09), var(--loader-color-10));
    --loader-bg-09-b: no-repeat left 80% top / 10% 100% linear-gradient(to right, var(--loader-color-09), var(--loader-color-10));
    --loader-bg-10-a: no-repeat left 90% bottom / 10% 0% linear-gradient(to right, var(--loader-color-10), var(--loader-color-11));
    --loader-bg-10-b: no-repeat left 90% bottom / 10% 100% linear-gradient(to right, var(--loader-color-10), var(--loader-color-11));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--color-secondary);
    background: var(--color-background);
    overflow-x: hidden;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 248, 249, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(6px);
}

.site-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 55px rgba(45, 52, 64, 0.12);
}

.site-loader__logo {
    width: clamp(140px, 18vw, 200px);
    animation: loader-logo-breathe 2.4s ease-in-out infinite;
    padding: 10px;
    border-radius: 20px;
    background: rgba(248, 92, 112, 0.08);
}

.site-loader__logo img {
    width: 100%;
    display: block;
}

.site-loader__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: none;
    color: var(--color-secondary);
}

.site-loader__marker {
    width: clamp(220px, 42vw, 360px);
    height: 56px;
    border-radius: 12px;
    border: 6px solid var(--loader-crayon);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px rgba(45, 52, 64, 0.08);
    background:
        var(--loader-bg-01-a),
        var(--loader-bg-02-a),
        var(--loader-bg-03-a),
        var(--loader-bg-04-a),
        var(--loader-bg-05-a),
        var(--loader-bg-06-a),
        var(--loader-bg-07-a),
        var(--loader-bg-08-a),
        var(--loader-bg-09-a),
        var(--loader-bg-10-a);
    animation: loader-rainbow-fill var(--loader-duration) infinite alternate ease-in-out;
}

.site-loader__marker-crayon {
    content: '';
    position: absolute;
    top: -10%;
    left: -3%;
    width: 120px;
    height: 70px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, transparent 40%, var(--loader-crayon) 41% 100%),
        linear-gradient(45deg, transparent 40%, var(--loader-crayon) 41% 100%),
        linear-gradient(var(--loader-crayon), var(--loader-crayon));
    background-repeat: no-repeat;
    background-size: 34% 50%, 34% 50%, 100% 100%;
    background-position: left top, left bottom, right bottom;
    animation: loader-marker-move var(--loader-duration) infinite alternate ease-in-out;
}

.site-loader__marker::before,
.site-loader__marker::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}

.site-loader__marker::after {
    border: 2px solid rgba(255, 255, 255, 0.25);
    mix-blend-mode: soft-light;
}

body.is-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--color-background);
    padding-top: var(--navbar-height);
}

/* Navbar Styles */
.navbar {
    background-color: var(--color-background);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar.is-hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 24px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    justify-content: flex-start;
}

.navbar-toggle {
    display: none;
    border: none;
    background: rgba(248, 92, 112, 0.1);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.navbar-toggle:hover,
.navbar-toggle:focus-visible {
    background: rgba(248, 92, 112, 0.18);
}

.navbar-toggle__line {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-secondary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle__line + .navbar-toggle__line {
    margin-top: 5px;
}

.navbar-toggle.is-active .navbar-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.is-active .navbar-toggle__line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.is-active .navbar-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.logo {
    padding: 4px 0;
    min-width: 200px;
    flex-shrink: 0;
}

.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
    row-gap: 12px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.menu .btn-order {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(248, 92, 112, 0.4);
    background: rgba(248, 92, 112, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.menu .btn-order:hover {
    background: rgba(248, 92, 112, 0.16);
    border-color: rgba(248, 92, 112, 0.6);
    color: var(--color-primary-strong);
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 700px;
    background: var(--color-background);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    position: relative;
    overflow: visible;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Text (Left Side) */
.hero-text {
    flex: 1;
    color: var(--color-secondary);
    padding-left: 100px;
}

.tagline {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--color-secondary);
    display: inline-block;
    position: relative;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    animation: text-wipe 1s ease forwards;
    animation-delay: 0.2s;
    will-change: clip-path;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #2d3440;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--color-primary);
    width: 0;
    max-width: 600px;
    animation: typing 2.4s steps(38, end) 0.3s forwards, caret 0.85s step-end 0.3s 4 forwards;
    will-change: width;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: button-wipe 0.6s ease forwards;
    will-change: clip-path, transform, opacity;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn span {
    display: block;
    line-height: 1;
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover span,
.btn:focus-visible span {
    transform: translateY(-200%);
}

.btn:hover::after,
.btn:focus-visible::after {
    transform: translate(-50%, -50%);
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 1.2s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1.35s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}   

.btn-primary:hover {
    background-color: var(--color-primary-strong);
    box-shadow: 0 8px 18px rgba(248, 92, 112, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: rgba(45, 52, 64, 0.08);
    color: var(--color-secondary);
    box-shadow: 0 6px 14px rgba(45, 52, 64, 0.15);
}

/* Hero Image (Right Side) */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
    transform: scale(0.96);
    animation: hero-breathe 3s ease-out forwards;
    transform-origin: center;
}

.hero-image img {
    max-width: 550px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    margin-left: 150px;
}

.parallax-asset {
    will-change: transform;
}

/* Main Content */
main {
    padding: 60px 0;
}

.reason-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-background);
}

.reason-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: column;
}

.reason-media {
    flex: 1;
    min-height: 320px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.96);
    animation: hero-breathe 3s ease-out forwards;
    transform-origin: center;
    margin: 10px auto 55px;
}

.reason-media img {
    width: 100%;
    max-width: 480px;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
}

.reason-decor {
    position: absolute;
    right: -10px;
    bottom: 10px;
    width: 220px;
    height: 220px;
    background-image: url('../images/butterfly-hand.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    animation: tectonic-smooth 8s ease-in-out infinite;
}

.reason-copy {
    flex: 1;
    color: var(--color-secondary);
    text-align: center;
    max-width: 820px;
}

.reason-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: inline-block;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.reason-title {
    font-size: 32px;
    margin-bottom: 28px;
    line-height: 1.3;
    display: inline-block;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.reason-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-muted);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(12px);
}

.reason-copy.in-view .reason-label {
    animation: text-wipe 0.9s ease forwards;
    animation-delay: 0.2s;
    will-change: clip-path;
}

.reason-copy.in-view .reason-title {
    animation: text-wipe 0.9s ease forwards;
    animation-delay: 0.35s;
    will-change: clip-path;
}


.reason-description.in-view {
    animation: text-clarify 1.35s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.25s;
    will-change: transform, opacity, filter;
}

.reason-description p {
    margin: 0;
    display: inline-block;
    transition: transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center;
    will-change: transform;
    cursor: default;
}

.reason-description p:hover {
    transform: translateY(-3px) scale(1.01);
}

.reason-description p:nth-child(odd) {
    color: var(--color-secondary);
}

.reason-description p:nth-child(even) {
    color: var(--color-muted);
}


.feature-showcase {
    padding: 90px 0 110px;
    background: var(--color-background);
    position: relative;
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.features-headline {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
}

.features-headline.in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.15s;
}

.features-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.features-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    grid-auto-rows: 1fr;
}

.features-grid.is-collapsed .feature-card:nth-child(n + 7) {
    display: none;
}

.features-toggle-wrapper {
    text-align: center;
}


.features-toggle {
    border: 1px solid rgba(255, 214, 217, 0.8);
    background: linear-gradient(135deg, #ffe4ed 0%, #ffd6d9 60%, #ffc6c3 100%);
    color: #c35364;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
    animation: feature-toggle-bob 3.6s ease-in-out infinite;
}

.features-toggle:hover,
.features-toggle:focus-visible {
    color: var(--color-primary);
    box-shadow: 0 12px 24px rgba(248, 92, 112, 0.15);
    animation-play-state: paused;
    transform: translateY(0);
}

@keyframes feature-toggle-bob {
    0% {
        transform: translateY(0);
        box-shadow: 0 12px 20px rgba(248, 92, 112, 0.08);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 18px 28px rgba(248, 92, 112, 0.12);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 12px 20px rgba(248, 92, 112, 0.08);
    }
}

.feature-card {
    background: var(--color-surface);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(248, 92, 112, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
    --glow-x: 80%;
    --glow-y: 20%;
    cursor: pointer;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glow-x, 80%) var(--glow-y, 20%), rgba(248, 92, 112, 0.18), transparent 58%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--color-secondary);
}

.feature-card p {
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(250, 190, 192, 0.35), rgba(255, 198, 195, 0.85));
    color: #f07a8c;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.feature-card.in-view {
    animation: card-rise 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.feature-card.in-view:hover {
    transform: translateY(3px) scale(0.985);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.design-selection {
    padding: 80px 0 130px;
    background: var(--color-background);
    position: relative;
    scroll-margin-top: calc(var(--navbar-height) + 24px);
}

.design-headline {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(12px);
}

.design-headline.in-view {
    animation: text-clarify 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.design-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.design-title {
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 18px;
    line-height: 1.25;
}

.design-subtitle {
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.design-gallery {
    position: relative;
    min-height: clamp(640px, 70vh, 780px);
    padding-bottom: 220px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.design-gallery__cards {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: min(360px, 80vw);
    height: 480px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.design-gallery__item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-radius: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(80%) scale(0.9);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    pointer-events: none;
}

.design-gallery__item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    z-index: 4;
    pointer-events: auto;
}

.design-gallery__item.is-prev,
.design-gallery__item.is-next {
    visibility: visible;
    opacity: 0.45;
    z-index: 2;
    filter: blur(0.5px);
}

.design-gallery__item.is-prev {
    transform: translateX(-90%) scale(0.92);
}

.design-gallery__item.is-next {
    transform: translateX(90%) scale(0.92);
}

.design-gallery:not(.is-ready) .design-gallery__item:first-child {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.design-gallery__actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, 0);
    display: inline-flex;
    gap: 16px;
    z-index: 5;
}

.design-gallery__control {
    border: 1px solid rgba(248, 92, 112, 0.4);
    background: rgba(248, 92, 112, 0.1);
    color: var(--color-primary-strong);
    border-radius: 999px;
    padding: 10px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.design-gallery__control:hover,
.design-gallery__control:focus-visible {
    background: rgba(248, 92, 112, 0.2);
    box-shadow: 0 12px 24px rgba(248, 92, 112, 0.2);
    transform: translateY(-2px);
}

.design-gallery__cta-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 6;
}

.design-gallery__cta {
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
    text-align: center;
}

.design-card {
    background: var(--color-surface);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(248, 92, 112, 0.12);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(42px) scale(0.97);
    filter: blur(10px);
    transition: box-shadow 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.design-card.in-view {
    animation: card-rise 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    filter: blur(0);
}

.design-card:hover {
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
    transform: translateY(-4px);
}



.design-card__artwork {
    height: 240px;
    border-radius: 0 0 24px 24px;
    margin: 12px 0 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease;
}

.design-card__artwork[role='button'] {
    cursor: pointer;
}

.design-card__artwork:hover,
.design-card__artwork:focus-visible {
    transform: translateY(-4px);
}

.design-card__artwork::after {
    content: none;
}

.design-card__artwork--modern {
    background: url('../images/demo2.png');
}

.design-card__artwork--floral {
    background: url('../images/demo1.png');
}

.design-card__artwork--earthy {
    background: url('../images/demo3.png');
}

.design-card__artwork--modern,
.design-card__artwork--floral,
.design-card__artwork--earthy {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.design-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    align-items: center;
    text-align: center;
}

.design-card.design-card--gallery {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
}

.design-card--gallery .design-card__artwork {
    height: 260px;
}

.pricing {
    padding: 100px 0 110px;
    background: var(--color-background);
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.pricing-card {
    max-width: 880px;
    margin: 0 auto;
    border-radius: 36px;
    border: 1px solid rgba(248, 92, 112, 0.15);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    padding: 48px;
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(14px);
}

.pricing-card[data-scroll-animate].in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.pricing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--color-primary);
    margin: 0;
}

.pricing-title {
    font-size: 40px;
    margin: 0;
    color: var(--color-secondary);
}

.pricing-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pricing-price__old {
    font-size: 18px;
    color: rgba(45, 52, 64, 0.45);
    text-decoration: line-through;
}

.pricing-price__current {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-note {
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.7;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.pricing-features li {
    background: rgba(250, 190, 192, 0.18);
    border: 1px solid rgba(248, 92, 112, 0.25);
    border-radius: 18px;
    padding: 14px 18px 14px 46px;
    color: var(--color-secondary);
    position: relative;
    font-weight: 500;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 12px rgba(248, 92, 112, 0.25);
}

.pricing-features li::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 28px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn {
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
}

.design-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.design-card__price--old {
    font-size: 14px;
    color: rgba(45, 52, 64, 0.4);
    text-decoration: line-through;
}

.design-card__price--current {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-primary);
}

.design-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--color-primary);
    margin: 0;
}

.design-card h3 {
    font-size: 24px;
    color: var(--color-secondary);
    margin: 0;
}

.design-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
}

.design-card__description {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 10px);
    background: var(--color-surface);
    border: 1px solid rgba(45, 52, 64, 0.1);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    padding: 14px 16px;
    color: var(--color-secondary);
    line-height: 1.6;
    width: min(260px, calc(100% - 40px));
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 3;
}

.design-card__description::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 12px;
    background: var(--color-surface);
    border-left: 1px solid rgba(45, 52, 64, 0.1);
    border-bottom: 1px solid rgba(45, 52, 64, 0.1);
    border-bottom-left-radius: 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.design-card__cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: auto;
}

.design-card__cta {
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(248, 92, 112, 0.08);
    border: 1px solid rgba(248, 92, 112, 0.4);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
    z-index: 2;
}

.design-card__cta:hover {
    background: rgba(248, 92, 112, 0.16);
    border-color: rgba(248, 92, 112, 0.6);
    color: var(--color-primary-strong);
    text-decoration: none;
}

.design-card__cta-wrapper:hover .design-card__description,
.design-card__cta-wrapper:focus-within .design-card__description,
.design-card__cta:focus-visible + .design-card__description {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.addons {
    padding: 110px 0 90px;
    background: var(--color-background);
    position: relative;
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.addons-headline {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(12px);
}

.addons-headline.in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.addons-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.addons-title {
    font-size: 34px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.addons-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.7;
}

.addon-accordion {
    background: var(--color-surface);
    border-radius: 32px;
    border: 1px solid rgba(248, 92, 112, 0.15);
    box-shadow: 0 25px 60px rgba(10, 8, 50, 0.08);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(14px);
}

.addon-accordion.in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.addon-accordion__item {
    border-radius: 24px;
    padding: 4px 4px 0;
    background: rgba(250, 190, 192, 0.08);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.addon-accordion__item.is-open {
    border-color: rgba(248, 92, 112, 0.45);
    background: rgba(250, 190, 192, 0.15);
}

.addon-accordion__trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.addon-accordion__eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--color-primary);
    margin: 0 0 6px;
}

.addon-accordion__trigger h3 {
    margin: 0;
    font-size: 22px;
    color: var(--color-secondary);
}

.addon-accordion__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(45, 52, 64, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}

.addon-accordion__icon::before,
.addon-accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--color-secondary);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.addon-accordion__icon::before {
    width: 16px;
    height: 2px;
}

.addon-accordion__icon::after {
    width: 2px;
    height: 16px;
}

.addon-accordion__item.is-open .addon-accordion__icon::after {
    transform: scaleY(0);
}

.addon-accordion__item.is-open .addon-accordion__icon {
    border-color: rgba(248, 92, 112, 0.5);
}

.addon-accordion__content {
    padding: 0 24px 24px;
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding-top 0.25s ease;
}

.addon-accordion__item.is-open .addon-accordion__content {
    padding-top: 4px;
}

.addon-accordion__content ul {
    margin: 14px 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--color-secondary);
}

.addon-accordion__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.addon-accordion__list {
    margin-top: 0;
    gap: 8px;
}

.addon-accordion__spacer {
    margin-bottom: 14px;
}

.addon-accordion__content strong {
    font-weight: 600;
    color: var(--color-primary);
}

.addon-accordion__tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.addon-accordion__tiers > div {
    border: 1px solid rgba(248, 92, 112, 0.3);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 198, 195, 0.25);
}

.addon-tier__label {
    margin: 0 0 6px;
    font-weight: 600;
    color: var(--color-secondary);
}

.addon-tier__meta {
    margin: 0;
    color: var(--color-muted);
}

.addon-accordion__price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(248, 92, 112, 0.3);
    background: rgba(250, 190, 192, 0.3);
    color: var(--color-primary-strong);
    font-weight: 600;
    margin: 0 0 14px;
}

.faq {
    padding: 110px 0;
    background: var(--color-background);
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.faq-headline {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(12px);
}

.faq-headline.in-view {
    animation: text-clarify 1.05s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.faq-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.faq-title {
    font-size: 34px;
    color: var(--color-secondary);
    margin-bottom: 14px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    margin: 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(14px);
}

.faq-accordion.in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.faq-accordion__item {
    border: 1px solid rgba(45, 52, 64, 0.12);
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 12px 30px rgba(12, 8, 30, 0.05);
}

.faq-accordion__trigger {
    width: 100%;
    padding: 22px 26px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-accordion__trigger h3 {
    margin: 0;
    font-size: 20px;
    color: var(--color-secondary);
}

.faq-accordion__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(45, 52, 64, 0.2);
    position: relative;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-accordion__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion__icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion__item.is-open .faq-accordion__icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-accordion__content {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.25s ease;
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 16px;
}

.faq-accordion__item.is-open .faq-accordion__content {
    padding-bottom: 22px;
}

.faq-accordion__content p {
    margin: 0 0 12px;
}

.faq-accordion__content p:last-child {
    margin-bottom: 0;
}

.site-footer {
    background: var(--color-secondary);
    color: #fefefe;
    padding: 60px 0 70px;
    margin-top: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
}

.footer-brand {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand img {
    width: 160px;
    height: auto;
    border-radius: 12px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.footer-social__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.footer-social__icon svg rect,
.footer-social__icon svg path,
.footer-social__icon svg circle {
    stroke: currentColor;
}

.footer-social__icon--wa img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}
.footer-meta p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-contacts {
        gap: 16px;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.testimonials {
    padding: 110px 0 130px;
    background: var(--color-background);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 40px 0 auto;
    height: 140px;
    background: radial-gradient(circle at center, rgba(248, 92, 112, 0.12), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-headline {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(12px);
}

.testimonials-headline.in-view {
    animation: text-clarify 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.testimonials-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.testimonials-title {
    font-size: 34px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.7;
}

.testimonials-carousel {
    position: relative;
    margin-top: 60px;
    --testimonial-gap: clamp(18px, 2.6vw, 28px);
    --testimonial-peek: clamp(40px, 6vw, 110px);
}

.testimonials-carousel__viewport {
    overflow: hidden;
    padding-bottom: 14px;
    touch-action: pan-y;
    overscroll-behavior: contain;
}

.testimonials-track {
    display: flex;
    gap: var(--testimonial-gap);
    transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.testimonial-card {
    position: relative;
    border-radius: 36px;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
    isolation: isolate;
    opacity: 0;
    transform: translateY(45px) scale(0.96);
    flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3 - (var(--testimonial-peek) / 3));
}

.testimonial-card.in-view {
    animation: card-rise 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.testimonial-card__photo {
    position: absolute;
    inset: 0;
    background-image: var(--testimonial-photo);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -2;
}

.testimonial-card:hover .testimonial-card__photo {
    transform: scale(1.04);
}

.testimonial-card__body {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
}

.testimonial-card__label {
    margin: 0;
    font-size: 16px;
    color: var(--color-secondary);
    text-transform: lowercase;
}

.testimonial-card__label span {
    color: var(--color-primary);
    font-weight: 600;
}

.testimonial-card__date {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--color-muted);
}

.testimonial-card__rating {
    display: inline-flex;
    gap: 4px;
    color: var(--color-primary);
}

.testimonial-card__rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial-card__text {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-secondary);
}

.testimonials-carousel__controls {
    position: absolute;
    top: -76px;
    right: 0;
    display: flex;
    gap: 12px;
}

.testimonials-carousel__control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(45, 52, 64, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.testimonials-carousel__control:hover,
.testimonials-carousel__control:focus-visible {
    border-color: rgba(248, 92, 112, 0.5);
    background: rgba(248, 92, 112, 0.12);
    transform: translateY(-2px);
}

.testimonials-carousel__control[disabled] {
    opacity: 0.45;
    pointer-events: none;
    transform: none;
}

.testimonials-carousel--static .testimonials-carousel__controls {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Feature Modal */
.feature-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 120;
}

.feature-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.feature-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 20, 0.55);
    backdrop-filter: blur(4px);
}

.feature-modal__dialog {
    position: relative;
    width: min(940px, 94vw);
    max-height: calc(92vh - 40px);
    background: var(--color-surface);
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.35);
    overflow: hidden;
    transform: translateY(60px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s ease;
    padding: 32px;
    display: flex;
    align-items: stretch;
}

.feature-modal.is-visible .feature-modal__dialog {
    transform: translateY(20px) scale(1);
    opacity: 1;
}

.feature-modal__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    max-height: calc(92vh - 120px);
    overflow-y: auto;
    padding-right: 4px;
}

.feature-modal__title {
    font-size: 26px;
    color: var(--color-secondary);
    margin: 0;
    text-align: center;
}

.feature-modal__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-muted);
    text-align: center;
}

.feature-modal__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.feature-modal__media img {
    width: 100%;
    height: auto;
    max-height: 55vh;
    display: block;
    object-fit: contain;
}

.feature-modal--media-compact .feature-modal__media {
    max-width: 520px;
    margin: 0 auto;
}

.feature-modal--media-compact .feature-modal__media img {
    width: 100%;
}

.feature-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    transition: transform 0.2s ease;
}

.feature-modal__close:hover {
    transform: scale(1.05);
}

.feature-modal__media[hidden] {
    display: none;
}

.design-preview-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 130;
}

.design-preview-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.design-preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 20, 0.6);
    backdrop-filter: blur(4px);
}

.design-preview-modal__dialog {
    position: relative;
    width: min(1440px, 98vw);
    height: min(900px, 94vh);
    background: var(--color-secondary);
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.4);
    overflow: hidden;
    transform: translateY(60px) scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s ease;
    display: flex;
}

.design-preview-modal.is-visible .design-preview-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.design-preview-modal__frame {
    flex: 1;
    position: relative;
}

.design-preview-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.design-preview-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transition: transform 0.2s ease;
    z-index: 2;
}

.design-preview-modal__close:hover {
    transform: scale(1.05);
}

/* Floating chat widget */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 140;
}

.chat-widget__fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    border: 2px solid #25d366;
    color: #25d366;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
    animation: chat-bob 3.4s ease-in-out infinite;
    padding: 10px;
}

.chat-widget__fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-widget__fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 50px rgba(37, 211, 102, 0.45);
}

.chat-widget__popup {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(37, 211, 102, 0.35);
    text-align: center;
    min-width: 150px;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
    position: relative;
}

.chat-widget__popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: inherit;
    border-left: inherit;
    border-bottom: inherit;
    transform: rotate(45deg);
    border-radius: 3px;
}

.chat-widget__label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #1c1f2a;
    margin: 0 0 4px;
}

.chat-widget__action {
    margin: 0;
    font-weight: 700;
    color: #25d366;
    display: flex;
    justify-content: center;
}

.chat-widget__action a {
    color: inherit;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.chat-widget__action a:hover {
    text-decoration: none;
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.45);
}

.chat-widget.is-open .chat-widget__popup {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-widget.is-open .chat-widget__fab {
    animation-play-state: paused;
    transform: translateY(-2px);
}

@keyframes chat-bob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-card.in-view:active {
    transform: translateY(5px) scale(0.975);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

@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;
    }

    .parallax-asset,
    .hero-image,
    .reason-media,
    .features-toggle,
    .site-loader__logo,
    .site-loader__marker,
    .site-loader__marker-crayon {
        animation: none !important;
        transform: none !important;
    }
}

/* Animations */
@keyframes loader-logo-breathe {
    0% {
        transform: translateY(0) scale(0.98);
    }
    50% {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 15px 35px rgba(248, 92, 112, 0.22);
    }
    100% {
        transform: translateY(0) scale(0.98);
    }
}

@keyframes loader-marker-move {
    0% {
        transform: translate(0, 0) rotate(-4deg);
    }
    25% {
        transform: translate(25%, 55%) rotate(3deg);
    }
    50% {
        transform: translate(50%, -10%) rotate(-4deg);
    }
    75% {
        transform: translate(75%, 55%) rotate(3deg);
    }
    100% {
        transform: translate(100%, -10%) rotate(-4deg);
    }
}

@keyframes loader-rainbow-fill {
    0% {
        background:
            var(--loader-bg-01-a),
            var(--loader-bg-02-a),
            var(--loader-bg-03-a),
            var(--loader-bg-04-a),
            var(--loader-bg-05-a),
            var(--loader-bg-06-a),
            var(--loader-bg-07-a),
            var(--loader-bg-08-a),
            var(--loader-bg-09-a),
            var(--loader-bg-10-a);
    }
    50% {
        background:
            var(--loader-bg-01-b),
            var(--loader-bg-02-b),
            var(--loader-bg-03-b),
            var(--loader-bg-04-b),
            var(--loader-bg-05-a),
            var(--loader-bg-06-a),
            var(--loader-bg-07-a),
            var(--loader-bg-08-a),
            var(--loader-bg-09-a),
            var(--loader-bg-10-a);
    }
    75% {
        background:
            var(--loader-bg-01-b),
            var(--loader-bg-02-b),
            var(--loader-bg-03-b),
            var(--loader-bg-04-b),
            var(--loader-bg-05-b),
            var(--loader-bg-06-b),
            var(--loader-bg-07-b),
            var(--loader-bg-08-a),
            var(--loader-bg-09-a),
            var(--loader-bg-10-a);
    }
    100% {
        background:
            var(--loader-bg-01-b),
            var(--loader-bg-02-b),
            var(--loader-bg-03-b),
            var(--loader-bg-04-b),
            var(--loader-bg-05-b),
            var(--loader-bg-06-b),
            var(--loader-bg-07-b),
            var(--loader-bg-08-b),
            var(--loader-bg-09-b),
            var(--loader-bg-10-b);
    }
}

@keyframes text-wipe {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes caret {
    0% {
        border-color: transparent;
    }
    50% {
        border-color: #f85c70;
    }
    100% {
        border-color: transparent;
    }
}

@keyframes button-wipe {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes hero-breathe {
    0% {
        transform: scale(0.96);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes text-clarify {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        transform: translateY(-4px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes tectonic-smooth {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-6px, 4px) rotate(-1.5deg);
    }
    50% {
        transform: translate(3px, -5px) rotate(1deg);
    }
    75% {
        transform: translate(-2px, 3px) rotate(-0.8deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes card-rise {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .navbar-content {
        flex-wrap: nowrap;
        gap: 16px;
        align-items: center;
    }

    .navbar-brand {
        flex-shrink: 0;
    }

    .logo {
        min-width: 170px;
        flex-shrink: 0;
    }

    .menu {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .menu li {
        flex: 0 0 auto;
    }

    .menu a {
        font-size: 15px;
        white-space: nowrap;
    }

    .menu .btn-order {
        padding: 6px 16px;
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 70px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .hero-text {
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        padding-right: 0;
    }

    .hero-image img {
        margin-left: 0;
        max-width: 460px;
    }

    .reason-content {
        padding: 0 12px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .design-selection {
        padding-bottom: 100px;
    }

    .design-gallery {
        min-height: auto;
        padding: 30px 0 120px;
        overflow: visible;
    }

    .design-gallery__cards {
        position: relative;
        width: min(460px, 90vw);
        height: 520px;
        margin: 0 auto;
        top: 0;
        left: 0;
        transform: none;
    }

    .design-gallery__actions {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        justify-content: center;
        gap: 16px;
        width: auto;
        flex-wrap: nowrap;
    }

    .design-gallery__control {
        flex: 0 0 auto;
        min-width: 150px;
        text-align: center;
    }

    .design-gallery__cta-wrapper {
        margin-top: 40px;
    }

    .pricing-card {
        padding: 40px 36px;
    }

    .pricing-title {
        font-size: 34px;
    }

    .addons {
        padding: 90px 0 80px;
    }

    .addon-accordion__tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq {
        padding: 90px 0;
    }

    .testimonials {
        padding: 90px 0 110px;
    }

    .testimonials-carousel {
        --testimonial-peek: clamp(24px, 5vw, 70px);
    }

    .testimonial-card {
        flex: 0 0 calc((100% - var(--testimonial-gap)) / 2 - (var(--testimonial-peek) / 2));
    }

    .testimonials-carousel__controls {
        top: -64px;
    }

    .site-footer {
        padding: 50px 0 60px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .navbar-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .navbar-brand {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .logo {
        min-width: auto;
        display: flex;
        justify-content: center;
    }

    .logo img {
        margin: 0 auto;
        max-width: 150px;
    }

    .navbar-toggle {
        display: inline-flex;
        align-self: auto;
    }

    .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    }

    .menu.is-open {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        display: block;
        text-align: center;
    }

    .menu .btn-order {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-text {
        padding-left: 0;
    }

    .tagline {
        font-size: 34px;
        clip-path: inset(0 0 0 0);
        animation: none;
    }

    .subtitle {
        font-size: 16px;
        white-space: normal;
        border-right: none;
        animation: none;
        width: auto;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 220px;
        opacity: 1;
        clip-path: none;
        animation: none;
    }

    .hero-image {
        justify-content: center;
        padding-right: 0;
    }

    .hero-image img {
        max-width: 340px;
    }

    .reason-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .reason-media,
    .reason-copy {
        width: 100%;
    }

    .reason-media img {
        max-width: 300px;
    }

    .reason-decor {
        display: none;
    }

    .reason-title {
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .design-selection {
        padding: 70px 0 80px;
    }

    .design-title {
        font-size: 28px;
    }

    .design-subtitle {
        font-size: 16px;
    }

    .design-gallery {
        padding: 20px 0 70px;
        overflow: hidden;
    }

    .design-gallery__cards {
        position: relative;
        width: min(360px, 90vw);
        height: 520px;
        margin: 0 auto;
        top: 0;
        left: 0;
        transform: none;
    }

    .design-gallery__actions {
        position: static;
        width: 100%;
        margin-top: 32px;
        transform: none;
        left: auto;
        bottom: auto;
        justify-content: center;
        gap: 12px;
    }

    .design-gallery__control {
        flex: 0 0 auto;
        min-width: 140px;
        text-align: center;
    }

    .design-gallery__cta-wrapper {
        margin-top: 24px;
    }

    .design-gallery__cta {
        width: auto;
        min-width: 220px;
        text-align: center;
    }

    .design-card {
        padding: 24px;
    }

    .design-card__artwork {
        height: 190px;
    }

    .design-card--gallery .design-card__artwork {
        height: 320px;
    }

    .pricing {
        padding: 60px 0 70px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .pricing-title {
        font-size: 30px;
    }

    .pricing-price__current {
        font-size: 36px;
    }

    .pricing-features {
        gap: 12px;
    }

    .addons {
        padding: 80px 0 70px;
    }

    .addon-accordion__trigger {
        padding: 20px;
        gap: 14px;
    }

    .addon-accordion__content {
        padding: 0 20px 20px;
    }

    .testimonials {
        padding: 70px 0 80px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonials-carousel {
        --testimonial-peek: 0px;
    }

    .testimonials-carousel__viewport {
        padding-right: 0;
    }

    .testimonials-track {
        gap: 18px;
    }

    .testimonial-card {
        min-height: 420px;
        flex: 0 0 calc(100% - 6px);
    }

    .testimonial-card__body {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
    }

    .testimonials-carousel__controls {
        position: static;
        margin-top: 26px;
        justify-content: center;
    }

    .faq {
        padding: 70px 0;
    }

    .faq-accordion__trigger {
        padding: 20px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-accordion__content {
        padding: 0 20px 20px;
    }

    .chat-widget {
        right: 16px;
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .tagline {
        font-size: 28px;
    }

    .menu a {
        font-size: 14px;
        padding: 10px 0;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
        align-self: center;
    }

    .design-gallery__cta {
        width: auto;
        min-width: 200px;
        align-self: center;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-image img {
        max-width: 280px;
    }

    .reason-title {
        font-size: 24px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .design-gallery__cards {
        width: min(320px, 92vw);
        height: 420px;
    }

    .design-gallery__actions {
        margin-top: 40px;
    }

    .design-gallery__control {
        flex: 0 0 auto;
        min-width: 130px;
    }

    .design-card--gallery .design-card__artwork {
        height: 280px;
    }

    .pricing-card {
        padding: 26px 20px;
    }

    .pricing-price__current {
        font-size: 32px;
    }

    .pricing-features li {
        padding: 12px 16px 12px 44px;
    }

    .addons {
        padding: 70px 0;
    }

    .addon-accordion__trigger {
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .addon-accordion__content {
        padding: 0 18px 18px;
    }

    .testimonials-headline {
        margin-bottom: 32px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonial-card {
        min-height: clamp(460px, 130vw, 580px);
    }

    .testimonial-card__body {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
    }

    .testimonial-card__text {
        font-size: 12px;
    }

    .faq-accordion__trigger {
        padding: 18px;
    }

    .faq-accordion__content {
        padding: 0 18px 18px;
    }

    .chat-widget {
        right: 12px;
        bottom: 12px;
    }
}
