:root {
    --bg: oklch(98% 0.01 70);
    --surface: oklch(100% 0 0);
    --fg: oklch(15% 0.02 50);
    --muted: oklch(45% 0.02 50);
    --border: oklch(90% 0.01 70);
    --accent: oklch(58% 0.16 35);
    --whatsapp: #075E54;
    --whatsapp-light: #128C7E;
    --cta-green: #0A8144;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --hero-bg: #FCF8F3;
    --paper-texture: url("https://www.transparenttextures.com/patterns/handmade-paper.png");
    --hero-gradient: radial-gradient(circle at top right, rgba(255, 255, 255, 0.9) 0%, rgba(252, 248, 243, 0.8) 100%);
    --card-shadow: 0 30px 60px rgba(92, 53, 40, 0.12), 0 10px 20px rgba(0, 0, 0, 0.05);
    --accent-glow: 0 0 30px rgba(92, 53, 40, 0.1);

    --container-max: 1200px;
    --section-spacing: 120px;
    --mobile-spacing: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--fg);
}

p {
    color: var(--muted);
    font-size: 1.05rem;
}

.text-accent {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.text-small {
    font-size: 0.85rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    section {
        padding: var(--mobile-spacing) 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--cta-green) 0%, #086d39 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(10, 129, 68, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(10, 129, 68, 0.35);
}

.btn-whatsapp:hover::after {
    opacity: 1;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

/* Header */
header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(200%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(92, 53, 40, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--fg);
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px;
    background: rgba(92, 53, 40, 0.03);
    border-radius: 12px;
    border: 1px solid transparent;
}

.menu-icon:hover {
    background: rgba(92, 53, 40, 0.08);
    border-color: rgba(92, 53, 40, 0.1);
    transform: scale(1.05);
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.menu-icon span:nth-child(2) {
    width: 18px;
    align-self: flex-end;
}

.menu-icon:hover span:nth-child(2) {
    width: 24px;
}

.menu-icon.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section Enhancements */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--hero-bg);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(92, 53, 40, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(92, 53, 40, 0.02) 0%, transparent 40%),
        var(--paper-texture);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    z-index: 1;
}

/* Decorative Background Elements */
.hero::after {
    content: 'pencil';
    position: absolute;
    top: 10%;
    right: -5%;
    font-family: var(--font-mono);
    font-size: 20rem;
    color: rgba(92, 53, 40, 0.03);
    font-weight: 900;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content h1 .text-accent {
    position: relative;
    display: inline-block;
}

.hero-content h1 .text-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.15;
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 48px;
    max-width: 540px;
    color: var(--muted);
    font-weight: 400;
}

.hero-badge-premium {
    display: inline-block;
    margin-bottom: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(92, 53, 40, 0.2), rgba(92, 53, 40, 0.05));
    border-radius: 100px;
}

.badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-inner i {
    color: var(--accent);
    font-size: 0.9rem;
}

.badge-inner span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.text-accent-highlight {
    position: relative;
    color: var(--accent);
    z-index: 1;
    white-space: nowrap;
}

.text-accent-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5%;
    width: 110%;
    height: 12px;
    background: var(--accent);
    opacity: 0.12;
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 20% 80% 30% 70% / 60% 40% 70% 30%;
    animation: highlighterDraw 1.5s ease-out forwards;
}

@keyframes highlighterDraw {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 110%;
        opacity: 0.12;
    }
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-price span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.hero-price strong {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--fg);
}

/* Artistic Overlays */
.hero-art-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-art-bg div {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-art-bg .circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    filter: blur(120px);
    animation: pulse 15s ease-in-out infinite;
}

.hero-art-bg .circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, oklch(85% 0.1 40) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    filter: blur(100px);
    animation: pulse 18s ease-in-out infinite reverse;
}

/* Floating Elements for Hero */
.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    opacity: 0.15;
    font-size: 3.5rem;
    color: var(--accent);
    filter: drop-shadow(0 10px 20px rgba(92, 53, 40, 0.1));
}

.hero-decoration.pen {
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

.hero-decoration.palette {
    bottom: 15%;
    left: 8%;
    transform: rotate(20deg);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-decoration.brush {
    top: 10%;
    right: 12%;
    transform: rotate(45deg);
    animation: float 9s ease-in-out infinite 1s;
}

/* Hero Visual Stack (Easel & Polaroid Effect) */
.hero-visual-stack {
    position: relative;
    justify-self: center;
    z-index: 10;
    perspective: 1000px;
}

.stack-container {
    position: relative;
    width: 420px;
    height: 520px;
}

.portrait-sketch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px 20px 70px;
    box-shadow:
        0 40px 100px rgba(92, 53, 40, 0.18),
        0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transform: rotate(-2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: easelFloat 8s ease-in-out infinite;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.portrait-sketch::after {
    content: 'Jatin Tarai';
    position: absolute;
    bottom: 85px;
    right: 35px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    opacity: 0.4;
    transform: rotate(-5deg);
}

.portrait-sketch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sketch-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.portrait-reference {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 180px;
    height: 220px;
    background: white;
    padding: 8px 8px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    transform: rotate(6deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: polaroidFloat 7s ease-in-out infinite;
    z-index: 3;
}

.portrait-reference img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-tag {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--muted);
    text-transform: uppercase;
}

.sketch-pencil {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2.5rem;
    color: var(--accent);
    transform: rotate(45deg);
    z-index: 4;
    animation: pencilDraw 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(92, 53, 40, 0.2));
}

.stack-arrow {
    position: absolute;
    bottom: -60px;
    left: -80px;
    z-index: 1;
    opacity: 0.4;
    transform: rotate(-10deg);
}

@keyframes easelFloat {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(-1deg) translateY(-15px);
    }
}

@keyframes polaroidFloat {

    0%,
    100% {
        transform: rotate(6deg) translateY(0);
    }

    50% {
        transform: rotate(8deg) translateY(-25px);
    }
}

@keyframes pencilDraw {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    25% {
        transform: rotate(40deg) translate(-10px, 10px);
    }

    50% {
        transform: rotate(50deg) translate(5px, -5px);
    }

    75% {
        transform: rotate(45deg) translate(-5px, 5px);
    }
}

/* Hero Responsiveness */
@media (max-width: 1200px) {
    .stack-container {
        width: 380px;
        height: 480px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 160px 0 100px;
    }

    .hero::after {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .hero-visual-stack {
        order: -1;
        /* Image moves to top on mobile */
        margin-bottom: 20px;
    }

    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .hero-content {
        order: 1;
        /* Content moves below image on mobile */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .hero-trust-banner-mobile {
        background-color: #F15A24;
        color: white;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        gap: clamp(2px, 1.5vw, 6px);
        padding: 6px 10px;
        border-radius: 100px;
        font-size: clamp(0.55rem, 2.8vw, 0.8rem);
        white-space: nowrap;
        font-weight: 500;
        margin-bottom: 30px;
        box-shadow:
            0 40px 100px rgba(92, 53, 40, 0.18),
            0 10px 20px rgba(0, 0, 0, 0.05);
        text-transform: capitalize;
    }

    .hero-trust-banner-mobile .divider {
        opacity: 0.6;
        margin: 0 5px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 25px;
        color: #111;
    }

    .hero-content .hero-price {
        order: 0;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        position: relative;
    }

    .hero-price .price-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: #777;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        text-transform: uppercase;
    }

    .hero-price .price-label::before,
    .hero-price .price-label::after {
        content: '';
        display: block;
        width: 35px;
        height: 1.5px;
        background-color: #D6A87C;
    }

    .hero-price strong {
        font-size: clamp(3rem, 12vw, 4.2rem);
        color: #D34C1F;
        line-height: 1;
        position: relative;
        display: flex;
        align-items: center;
        gap: clamp(4px, 2vw, 10px);
        margin: 0 clamp(5px, 4vw, 20px);
    }

    .hero-price strong::before,
    .hero-price strong::after {
        content: '';
        display: inline-block;
        width: 30px;
        height: 50px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 74C23 74 6 54 2 34C-2 14 16 2 16 2C16 2 35 15 41 33C47 51 23 74 23 74Z' fill='%23E9D5C3'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-price strong::before {
        transform: scaleX(-1);
    }

    .price-ornament {
        width: 40px;
        height: 10px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='5' r='3' fill='%23D6A87C'/%3E%3Cpath d='M0 5H18' stroke='%23D6A87C' stroke-width='1.5'/%3E%3Cpath d='M32 5H50' stroke='%23D6A87C' stroke-width='1.5'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 5px;
    }

    .stack-arrow {
        display: none;
    }

    .hero-decoration {
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .stack-container {
        width: 70vw;
        max-width: 400px;
        aspect-ratio: 4 / 5;
        height: auto;
        margin: 10px auto;
    }

    .portrait-reference {
        width: 35%;
        aspect-ratio: 3 / 4;
        height: auto;
        right: -10px;
        bottom: -10px;
    }

    .hero-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .stack-container {
        width: 70vw;
        max-width: 380px;
        aspect-ratio: 4 / 5;
        height: auto;
        margin: 10px auto;
    }

    .portrait-reference {
        width: 35%;
        aspect-ratio: 3 / 4;
        height: auto;
        right: -10px;
        bottom: -10px;
    }

    .sketch-pencil {
        font-size: 1.5rem;
        top: -8px;
        right: -8px;
    }

    /* Old hero-price overrides removed to preserve the new 992px mobile layout */

    .portrait-sketch {
        padding: 8px 8px 40px;
    }


    .portrait-sketch::after {
        bottom: 50px;
        right: 20px;
        font-size: 0.8rem;
    }
}

/* Right Side Drawer Menu Improvements */
.overlay-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 650px;
    max-width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.15);
    display: flex;
}

.menu-overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 53, 40, 0.2);
    backdrop-filter: blur(12px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.menu-overlay-bg.active {
    opacity: 1;
    pointer-events: auto;
}

.overlay-menu.active {
    transform: translateX(0);
}

.menu-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.menu-visual {
    width: 45%;
    background: #fdf7f0;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--paper-texture);
    opacity: 0.5;
}

.menu-img-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: transform 0.6s ease;
}

.overlay-menu.active .menu-img-wrapper {
    transform: rotate(0deg);
}

.menu-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(92, 53, 40, 0.2);
    border: 8px solid white;
}

.menu-artwork-tag {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    transform: rotate(3deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-artist-note {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-artist-note p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

.menu-signature {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 15px;
}

.menu-content {
    width: 55%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 15px 35px oklch(58% 0.16 35 / 30%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 100;
    border: none;
}

.menu-close:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--fg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.menu-close i {
    transition: transform 0.5s ease;
}

@media (max-width: 480px) {
    .menu-close {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

.menu-nav {
    margin-top: 20px;
}

.menu-nav ul {
    list-style: none;
}

.menu-link {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.overlay-menu.active .menu-link {
    transform: translateX(0);
    opacity: 1;
}

.menu-nav li:nth-child(1) .menu-link {
    transition-delay: 0.1s;
}

.menu-nav li:nth-child(2) .menu-link {
    transition-delay: 0.15s;
}

.menu-nav li:nth-child(3) .menu-link {
    transition-delay: 0.2s;
}

.menu-nav li:nth-child(4) .menu-link {
    transition-delay: 0.25s;
}

.menu-nav li:nth-child(5) .menu-link {
    transition-delay: 0.3s;
}

.menu-nav li:nth-child(6) .menu-link {
    transition-delay: 0.35s;
}

.menu-link:hover {
    color: var(--accent);
    transform: translateX(15px) !important;
}

.menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.btn-whatsapp-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white;
    padding: 20px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(30px);
    opacity: 0;
}

.overlay-menu.active .btn-whatsapp-menu {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.6s;
}

.btn-whatsapp-menu:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3);
}

.menu-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlay-menu.active .menu-socials {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.menu-socials a {
    width: 52px;
    height: 52px;
    background: #f8f8f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-socials a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 15px 30px oklch(58% 0.16 35 / 25%);
    border-color: transparent;
}

.menu-socials a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.menu-socials a:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

/* Premium Testimonial Cards */
.testi-card-premium {
    background: white;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(92, 53, 40, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s ease;
}

.testi-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(92, 53, 40, 0.12);
}

.testi-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testi-user-box {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testi-avatar-premium {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    padding: 2px;
}

.testi-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testi-user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testi-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0A8144;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testi-verified i {
    font-size: 0.85rem;
}

.testi-artwork-gallery {
    position: relative;
    margin: 0 -32px;
    background: #fcf8f3;
    padding: 24px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.artwork-display-frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.artwork-display-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    color: var(--accent);
}

.testi-quote-premium {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--fg);
    font-style: italic;
    position: relative;
}

.testi-quote-premium::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.05;
    font-family: serif;
}

/* Google Business CTA */
.testi-google-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-google-business {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: var(--fg);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.google-icon {
    font-size: 2rem;
    color: #4285F4;
    transition: transform 0.4s ease;
}

.btn-google-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-google-text .main-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--fg);
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.google-stars i {
    color: #FBBC05;
    font-size: 0.85rem;
}

.google-stars span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    margin-left: 4px;
}

.arrow-icon {
    font-size: 0.9rem;
    color: var(--muted);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.btn-google-business:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(66, 133, 244, 0.15);
    border-color: #4285F4;
}

.btn-google-business:hover .google-icon {
    transform: scale(1.1) rotate(-5deg);
}

.btn-google-business:hover .arrow-icon {
    transform: translate(4px, -4px);
    color: #4285F4;
    opacity: 1;
}

@media (max-width: 480px) {
    .btn-google-business {
        padding: 14px 20px;
        gap: 15px;
        width: 100%;
        max-width: 320px;
    }

    .btn-google-text .main-text {
        font-size: 0.95rem;
    }

    .google-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .testi-google-cta {
        margin-top: 40px;
    }

    .btn-google-business {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .overlay-menu {
        width: 100%;
    }

    .menu-container {
        flex-direction: column;
    }

    .menu-visual {
        width: 100%;
        height: 30%;
        padding: 40px 30px;
    }

    .menu-content {
        width: 100%;
        height: 70%;
        padding: 40px 30px;
    }

    .menu-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .menu-link {
        font-size: 1.8rem;
    }

    .menu-img-wrapper {
        display: none;
    }

    .menu-footer {
        gap: 24px;
    }

    .menu-socials {
        gap: 15px;
    }

    .menu-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}



/* Improved Trust Section */
.trust-section {
    padding: 0;
    margin-top: -60px;
    /* Overlap hero for depth */
    position: relative;
    z-index: 100;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--surface);
    padding: 45px 30px;
    border-radius: 32px;
    box-shadow:
        0 20px 60px rgba(92, 53, 40, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    max-width: 1050px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item:hover {
    transform: translateY(-8px);
}

.trust-icon-box {
    width: 64px;
    height: 64px;
    background: oklch(98% 0.01 35);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(92, 53, 40, 0.05);
}

.trust-content strong {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--fg);
    line-height: 1;
}

.trust-content span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .trust-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }

    .trust-section {
        margin-top: -40px;
    }
}

/* Advanced Real Customers Section */
.delivery-section {
    background-color: oklch(99% 0.005 70);
    background-image: var(--paper-texture);
    background-blend-mode: multiply;
    overflow: visible;
    position: relative;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.delivery-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    padding: 12px;
    background: white;
    box-shadow: 0 50px 100px rgba(92, 53, 40, 0.12);
    transform: rotate(-1deg);
}

.main-delivery-img {
    width: 100%;
    border-radius: 24px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-img-wrapper:hover .main-delivery-img {
    transform: scale(1.02) rotate(1deg);
}

.delivery-decoration {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
    filter: blur(50px);
}

/* Rotating Stamp */
.delivery-stamp {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    z-index: 10;
}

.delivery-stamp svg {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.delivery-stamp text {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    fill: var(--accent);
}

.stamp-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.delivery-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pre-heading {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: block;
}

.text-gradient {
    background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delivery-content h2 {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    margin-bottom: 24px;
    line-height: 1.05;
}

.delivery-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--muted);
    line-height: 1.8;
}

.delivery-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--fg);
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .delivery-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .delivery-content {
        align-items: center;
    }

    .delivery-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .delivery-stats {
        justify-content: center;
    }

    .delivery-stamp {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
}

/* How It Works - Premium Redesign */
#how-it-works {
    background-color: var(--surface);
    position: relative;
    overflow: hidden;
}

#how-it-works .section-header {
    margin-bottom: 80px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            var(--border) 10%,
            var(--border) 90%,
            transparent);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-visual {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 2;
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    box-shadow: 0 15px 30px oklch(58% 0.16 35 / 20%);
}

.step-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.step-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: oklch(92% 0.01 70);
    z-index: 1;
    line-height: 1;
    pointer-events: none;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.process-step:hover .step-number-bg {
    color: var(--accent);
    opacity: 0.1;
    transform: translate(-50%, -60%) scale(1.1);
}

.step-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--fg);
}

.step-info p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 1024px) {
    .process-timeline {
        gap: 20px;
    }

    .step-number-bg {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 30px;
        align-items: flex-start;
    }

    .step-visual {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-number-bg {
        font-size: 4rem;
        left: 40px;
    }

    .step-info {
        padding-top: 10px;
    }
}

/* Pricing - Premium Redesign */
#pricing {
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 0% 0%, oklch(95% 0.02 35 / 5%) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, oklch(95% 0.02 35 / 5%) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3");
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    perspective: 2000px;
}

.price-card {
    background: var(--surface);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-20px) rotateX(4deg) rotateY(-2deg);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.15),
        0 20px 40px -20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

/* Interactive Shine Effect */
.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            transparent 100%);
    transform: rotate(25deg);
    transition: 0.8s;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}

.price-card:hover::before {
    left: 50%;
    opacity: 1;
}

.price-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.price-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--fg);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.price-header .size {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    padding: 4px 12px;
    background: oklch(58% 0.16 35 / 8%);
    border-radius: 100px;
}

.price-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfdfd;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

.price-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(1) contrast(1.1);
}

.price-card:hover .price-img {
    transform: scale(1.05);
    filter: grayscale(0) contrast(1.05);
}

.img-frame-overlay {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.price-footer {
    margin-top: auto;
    position: relative;
    z-index: 2;
    padding-top: 24px;
    border-top: 1px dashed var(--border);
}

.amount-box {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.amount-box .starting-at {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 700;
}

.amount-inner {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.amount-box .currency {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--muted);
    font-family: var(--font-display);
}

.amount-box .value {
    font-size: 3.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--fg);
    line-height: 1;
    letter-spacing: -0.02em;
}

.btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 24px;
    background: var(--fg);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-premium:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px oklch(58% 0.16 35 / 30%);
}

.btn-premium i {
    font-size: 1.2rem;
}

/* Trust Badges */
.pricing-trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 1.2rem;
    color: var(--accent);
    opacity: 0.8;
}

.trust-badge:hover {
    color: var(--fg);
    transform: translateY(-2px);
}

.pricing-footer-note {
    margin-top: 32px;
    text-align: center;
    opacity: 0.7;
}

.pricing-footer-note p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--muted);
}

/* Enhanced Popular Card Glow */
.price-card.popular {
    box-shadow:
        0 20px 40px -10px oklch(58% 0.16 35 / 10%),
        0 10px 20px -15px rgba(0, 0, 0, 0.1);
}

.price-card.popular:hover {
    box-shadow:
        0 40px 80px -15px oklch(58% 0.16 35 / 20%),
        0 20px 40px -20px oklch(58% 0.16 35 / 15%);
}

/* Pricing Responsiveness */
@media (max-width: 1100px) {
    .pricing-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .price-card {
        padding: 32px 24px;
    }

    .amount-box .value {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .price-card.popular {
        grid-column: span 2;
        order: -1;
        /* Keep popular one on top or first */
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 15px;
    }

    .price-card.popular {
        grid-column: span 1;
        transform: scale(1);
    }

    .price-card {
        padding: 32px 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .amount-box .value {
        font-size: 2.8rem;
    }

    .pricing-trust-badges {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
        margin-top: 40px;
        padding-left: 10%;
    }

    .trust-badge {
        width: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .price-card {
        padding: 24px 16px;
    }

    .price-header h3 {
        font-size: 1.5rem;
    }

    .price-header .size {
        font-size: 0.8rem;
    }

    .amount-box .value {
        font-size: 2.2rem;
    }

    .price-features li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .pricing-footer-note p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .pricing-trust-badges {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .trust-badge {
        justify-content: center;
    }
}

.price-tag {
    position: absolute;
    top: 24px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 10px 20px oklch(58% 0.16 35 / 25%);
    white-space: nowrap;
}

.pricing-notice {
    text-align: center;
    margin-top: 60px;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 600px) {
    .pricing-notice {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }

    .pricing-notice::before,
    .pricing-notice::after {
        width: 60px;
    }
}


.pricing-notice::before,
.pricing-notice::after {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--border);
}

/* Gallery Portfolio - Premium Overhaul */
#recent-work {
    background-color: oklch(99% 0.01 70);
    position: relative;
    padding-bottom: 120px;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.featured {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.artwork-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fdfdfd;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 0 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.artwork-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: contrast(1.05);
}

.artwork-overlay {
    position: absolute;
    inset: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 5;
}

.gallery-item:hover .artwork-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.artwork-info {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .artwork-info {
    transform: translateY(0);
}

.artwork-medium {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 700;
}

.artwork-title {
    display: block;
    font-size: 1.25rem;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
}

.artwork-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.gallery-item:hover .artwork-zoom {
    opacity: 1;
    transform: scale(1);
}

.view-more {
    margin-top: 80px;
    text-align: center;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border: 2px solid var(--fg);
    color: var(--fg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-outline:hover {
    background: var(--fg);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-cta-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--muted);
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid-premium {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }

    .gallery-item.featured,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Testimonials Slider */
/* Testimonials Premium Section */
.testimonials-premium {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #fffaf5, #ffffff);
    position: relative;
    overflow: hidden;
}

.testimonials-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas-paper.png');
    opacity: 0.3;
    pointer-events: none;
}

.testi-card-v3 {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    position: relative;
}

.testi-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.testi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    display: block;
}

.testi-date {
    font-size: 0.8rem;
    color: var(--muted);
}

.testi-platform-icon {
    color: #25D366;
    font-size: 1.4rem;
}

.stars-gold {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.quote-icon-gold {
    color: rgba(212, 175, 55, 0.2);
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testi-text-content {
    position: relative;
}

.testi-text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

/* Added for bigger artwork display in testimonials */
.testi-artwork-gallery {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.artwork-display-frame {
    width: 100%;
    height: 300px;
    /* Increased height as requested */
    background: #f9f9f9;
    border: 8px solid #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    height: 25px;
}

.artwork-display-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.artwork-display-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artwork-display-frame:hover img {
    transform: scale(1.05);
}

.artwork-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testi-artwork-small {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.artwork-frame-mini {
    width: 100%;
    height: 180px;
    background: #f9f9f9;
    border: 8px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.artwork-frame-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.artwork-frame-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonials-slider {
    padding: 20px 0 60px 0;
    /* Add bottom padding for dots */
    overflow: visible !important;
    /* Ensure dots aren't cut off */
}

/* Slider Controls Customization */
.premium-pagination {
    bottom: 0 !important;
    /* Position at the bottom of the padding */
}

.premium-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary);
    opacity: 0.2;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.premium-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

.premium-nav {
    color: var(--accent) !important;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
}

.premium-nav::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-button-prev.premium-nav {
    left: -25px;
}

.swiper-button-next.premium-nav {
    right: -25px;
}

@media (max-width: 1200px) {
    .premium-nav {
        display: none;
    }
}

/* Wave Divider */
.wave-divider {
    position: relative;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    background: transparent;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--bg);
}

/* Footer CTA Premium */
.footer-cta {
    background-color: #FDF7F0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(92, 53, 40, 0.08) 0%, transparent 40%),
        var(--paper-texture);
    padding: 160px 0 120px;
    position: relative;
    color: var(--fg);
    text-align: center;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas-paper.png');
    opacity: 0.4;
    pointer-events: none;
}

.footer-cta-overlay {
    display: none;
    /* Removed dark overlay */
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Decorative Elements */
.cta-decor {
    position: absolute;
    color: var(--accent);
    opacity: 0.12;
    font-size: 4rem;
    z-index: 1;
    pointer-events: none;
    animation: floatingDecor 8s ease-in-out infinite;
    filter: blur(1px);
}

.decor-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.decor-2 {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
    font-size: 5rem;
}

.decor-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatingDecor {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Social Proof */
.cta-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-stack img:hover {
    transform: translateY(-5px);
    z-index: 5;
}

.avatar-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    margin-left: -12px;
    border: 3px solid white;
}

.proof-text {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--muted);
    font-weight: 500;
}

/* Typography */
.cta-main-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-family: var(--font-display);
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--fg);
    position: relative;
}

.cta-main-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 2px;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Premium Button Upgrade */
.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--cta-green);
    color: white;
    padding: 22px 50px;
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 129, 68, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-premium:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 129, 68, 0.3);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-label {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.shimmer {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(35deg);
    animation: shimmerEffect 4s infinite;
}

@keyframes shimmerEffect {
    0% {
        transform: translate(-100%, -100%) rotate(35deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(35deg);
    }
}

/* Badges v3 - Glassmorphism */
.footer-badges-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 100px;
}


.badge-v3 {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.badge-v3:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.badge-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.badge-v3:hover .badge-icon-wrapper {
    background: var(--accent);
    color: #1a1a1a;
    transform: scale(1.1) rotate(10deg);
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-info strong {
    font-size: 1.05rem;
    color: var(--fg);
}

.badge-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-cta {
        padding: 100px 0 60px;
    }

    .cta-main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .footer-badges-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 60px;
    }

    .badge-v3 {
        padding: 20px 15px;
        gap: 10px;
    }

    .badge-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .badge-info strong {
        font-size: 0.9rem;
    }

    .badge-info span {
        font-size: 0.75rem;
    }

    .btn-whatsapp-premium {
        padding: 16px 30px;
        width: 100%;
        justify-content: center;
    }

    .cta-decor {
        display: none;
    }
}




/* Simple Footer */
.simple-footer {
    background: white;
    padding: 40px 0;
    color: var(--fg);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.simple-footer p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social-minimal {
    display: flex;
    gap: 20px;
}

.footer-social-minimal a {
    color: var(--muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-minimal a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility */
.divider-small {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 10px auto;
}

/* Animations */
.process-step,
.price-card,
.gallery-item,
.delivery-content,
.testi-card-v3,
.testi-card-premium,
.cta-inner,
.badge-v3,
.simple-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.process-step.animate-in,
.price-card.animate-in,
.gallery-item.animate-in,
.delivery-content.animate-in,
.testi-card-v3.animate-in,
.testi-card-premium.animate-in,
.cta-inner.animate-in,
.badge-v3.animate-in,
.simple-footer.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for process steps */
.process-step:nth-child(2) {
    transition-delay: 0.1s;
}

.process-step:nth-child(3) {
    transition-delay: 0.2s;
}

.process-step:nth-child(4) {
    transition-delay: 0.3s;
}

/* Staggered delay for pricing */
.price-card:nth-child(2) {
    transition-delay: 0.1s;
}

.price-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .float-tooltip {
    position: absolute;
    right: 85px;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-float .float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333;
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-float .float-tooltip {
        display: none;
    }
}