/* CSS Variables - Elegant Light Theme */
:root {
    --bg-primary: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-primary: #2D2D2D;
    --text-secondary: #6B6B6B;
    --text-muted: #9CA3AF;
    --accent: #C5A059;
    --accent-light: #E8D5A8;
    --accent-dark: #A68442;
    --border: #E5E5E5;
    --border-dark: #D1D1D1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

p {
    color: var(--text-secondary);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo {
    height: 8rem;
    /*  height: 20%;
            width: 20px;
            display: block; */
}

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

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero - Vetrina Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #F5F5F5 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    line-height: 1.1;
}

.hero h1 .highlight {
    display: inline-block;
    position: relative;
    color: var(--accent);
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-light);
    z-index: -1;
    border-radius: 2px;
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {

    0%,
    100% {
        opacity: 0.4;
        height: 8px;
        bottom: 4px;
    }

    50% {
        opacity: 0.7;
        height: 12px;
        bottom: 2px;
    }
}

.hero h1 .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 .word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero h1 .word:nth-child(2) {
    animation-delay: 0.2s;
}

.hero h1 .word:nth-child(3) {
    animation-delay: 0.3s;
}

.hero h1 .word:nth-child(4) {
    animation-delay: 0.4s;
}

.hero h1 .word:nth-child(5) {
    animation-delay: 0.5s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.7s;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    width: 320px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
    position: relative;
    padding: 32px 24px;
    text-align: center;
}

.hero-image .offer-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: var(--accent-dark);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.hero-image .offer-title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-image .offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hero-image .offer-old-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-decoration: line-through;
}

.hero-image .offer-new-price {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-image .offer-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    margin-bottom: 16px;
}

.hero-image .offer-features {
    list-style: none;
    text-align: left;
    width: 100%;
}

.hero-image .offer-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: .90rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.hero-image .offer-features li svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    flex-shrink: 0;
}

.hero-image .offer-validity {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6875rem;
}

/* Trust Section */
.trust {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

/* Services */
.services {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 14px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1rem;
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px 32px;
    transition: var(--transition);
}

.service-card:hover {
    background: #FCFCFC;
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-card h3 {
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: var(--border-dark);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
}

.process-step h3 {
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.9375rem;
}

/* Pricing */
.pricing {
    background: var(--bg-card);
}

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

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-dark);
}

.pricing-card.featured {
    background: var(--text-primary);
    border-color: var(--text-primary);
}

.pricing-card.featured * {
    color: #fff;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 2px;
}

.pricing-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.pricing-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-price {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--text-primary);
}

.pricing-card.featured .pricing-amount {
    color: #fff;
}

.pricing-amount span {
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-amount span {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-period {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pricing-features li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--accent);
}

.pricing-card .btn {
    width: 100%;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 0;
}

.cta-inner {
    max-width: 520px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 14px;
    color: var(--text-primary);
}

.cta p {
    font-size: 1.0625rem;
    margin-bottom: 36px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 50px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        width: 220px;
        padding: 24px 20px;
    }

    .trust-inner {
        gap: 24px 32px;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 1px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {

    /* Container - reduce padding */
    .container {
        padding: 0 18px;
    }

    /* Sections - reduce vertical spacing */
    section {
        padding: 56px 0;
    }

    /* Header */
    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 32px;
    }

    /* Navigation - hide desktop nav, show hamburger */
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section - Full mobile optimization */
    .hero {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .hero-inner {
        gap: 32px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-tag {
        font-size: 0.6875rem;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 1.875rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero h1 .highlight::after {
        height: 6px;
        bottom: 2px;
    }

    @keyframes highlightPulse {

        0%,
        100% {
            opacity: 0.4;
            height: 6px;
            bottom: 2px;
        }

        50% {
            opacity: 0.7;
            height: 8px;
            bottom: 1px;
        }
    }

    .hero p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    /* Hero Offer Card */
    .hero-visual {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 28px 20px;
        border-radius: 14px;
    }

    .hero-image .offer-badge {
        font-size: 0.5625rem;
        padding: 6px 12px;
        top: -10px;
        right: -10px;
    }

    .hero-image .offer-title {
        font-size: 0.6875rem;
        margin-bottom: 6px;
    }

    .hero-image .offer-old-price {
        font-size: 0.875rem;
    }

    .hero-image .offer-new-price {
        font-size: 2rem;
    }

    .hero-image .offer-subtitle {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .hero-image .offer-features {
        gap: 4px;
    }

    .hero-image .offer-features li {
        font-size: 0.6875rem;
        margin-bottom: 4px;
    }

    .hero-image .offer-features li svg {
        width: 10px;
        height: 10px;
    }

    .hero-image .offer-validity {
        font-size: 0.625rem;
        margin-top: 10px;
        padding-top: 10px;
    }

    /* Trust Bar */
    .trust {
        padding: 28px 0;
    }

    .trust-inner {
        flex-direction: column;
        gap: 16px;
    }

    .trust-item {
        font-size: 0.8125rem;
        gap: 10px;
    }

    .trust-item svg {
        width: 18px;
        height: 18px;
    }

    /* Services */
    .section-header {
        margin-bottom: 36px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .services-grid {
        gap: 1px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    /* Process */
    .process-grid {
        gap: 32px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* CTA */
    .cta {
        padding: 56px 0;
    }

    .cta-inner {
        padding: 0 10px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9375rem;
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .cta .btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* Footer */
    .footer {
        padding: 36px 0 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-copy {
        font-size: 0.6875rem;
        margin-top: 24px;
        padding-top: 16px;
    }

    /* Mobile Menu Styles */
    .mobile-menu-open .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-open .nav a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        font-weight: 500;
    }

    .mobile-menu-open .nav a:last-child {
        border-bottom: none;
        margin-top: 8px;
    }

    .mobile-menu-open .nav a.btn {
        margin-top: 12px;
        padding: 12px 20px;
        text-align: center;
    }

    .mobile-menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Small mobile devices */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .hero-image {
        max-width: 260px;
    }

    .hero-image .offer-new-price {
        font-size: 1.75rem;
    }

    .section-header h2,
    .cta h2 {
        font-size: 1.375rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .nav a:active {
        opacity: 0.7;
    }

    .service-card:active {
        background: #FCFCFC;
    }

    .footer-links a:active {
        color: var(--accent);
    }
}