:root {
    --bg-color: #0b0d11;
    --surface-color: #12151c;
    --card-color: rgba(27, 32, 43, 0.7);
    --text-color: #f0f4f8;
    --muted-color: #94a3b8;
    --accent-color: #054F88;
    --accent-hover: #0867B3;
    --accent-glow: rgba(5, 79, 136, 0.4);
    --success-color: #2cc985;
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --font-main: 'Space Grotesk', 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 15% 15%, rgba(5, 79, 136, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(5, 79, 136, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(11, 13, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--accent-hover);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lang-switch {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--muted-color);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--card-color);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover:not(.active) {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

@keyframes blurSlideUp {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Hero */
.hero {
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Cleanup old pseudo elements if any remain in structure */
.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0;
    animation: blurIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(5, 79, 136, 0.15);
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(5, 79, 136, 0.2);
}

.hero p {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 32px;
    opacity: 0;
    animation: blurSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-actions .cta-button {
    opacity: 0;
    animation: blurSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.hero-actions .ghost-button {
    opacity: 0;
    animation: blurSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(5, 79, 136, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(5, 79, 136, 0.5);
    filter: brightness(1.1);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    border-color: var(--muted-color);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    opacity: 0;
    animation: blurSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(5, 79, 136, 0.1);
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(5, 79, 136, 0.2);
}

.hero-checklist {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 10px;
    max-width: 720px;
    width: 100%;
}

.hero-checklist li {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    position: relative;
    padding-left: 42px;
    color: var(--muted-color);
    opacity: 0;
    animation: blurSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-checklist li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-hover);
    font-weight: 700;
}

/* Sections */
.features,
.pricing,
.how-to,
.troubleshooting,
.contact {
    padding: 140px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-lead {
    max-width: 960px;
    padding: 0 32px;
    margin: 0 auto 56px;
    text-align: center;
    color: var(--muted-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--card-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}

.feature-card:hover {
    background-color: rgba(27, 32, 43, 0.85);
    border-color: rgba(5, 79, 136, 0.4);
    box-shadow: 0 8px 24px -4px rgba(5, 79, 136, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: #38bdf8;
    background: rgba(5, 79, 136, 0.15);
    border-radius: 16px;
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--card-color);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    background-color: rgba(27, 32, 43, 0.85);
    border-color: rgba(5, 79, 136, 0.4);
    box-shadow: 0 8px 24px -4px rgba(5, 79, 136, 0.2);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(27, 32, 43, 0.9), rgba(5, 79, 136, 0.05));
    border: 1px solid rgba(5, 79, 136, 0.4);
    box-shadow: 0 20px 50px -15px rgba(5, 79, 136, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(5, 79, 136, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 24px 0;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.price .price-sub {
    display: inline-block;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted-color);
}

.price .price-sub-placeholder {
    visibility: hidden;
}

.pricing-card h3 {
    color: var(--muted-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.pricing-card p {
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pricing-advantage {
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 32px;
    background: rgba(5, 79, 136, 0.08);
    border: 1px solid rgba(5, 79, 136, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    color: #38bdf8;
    flex-shrink: 0;
}

.advantage-content h3 {
    color: #38bdf8;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.advantage-content p {
    color: var(--muted-color);
    line-height: 1.6;
    font-size: 0.92rem;
}

.pricing-guidance {
    max-width: 960px;
    margin: 20px auto 0;
    padding: 26px 30px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: block;
}

.pricing-guidance-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-guidance-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #38bdf8;
    background: transparent;
}

.pricing-policy-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #38bdf8;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.pricing-guidance-note-list {
    margin: 14px 0 12px;
    padding-left: 22px;
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.7;
}

.pricing-guidance-note-list li {
    margin: 0;
}

.pricing-policy-list {
    list-style: decimal;
    padding-left: 22px;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pricing-policy-list li {
    position: relative;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* How to */
.how-to {
    background: transparent;
}

.steps {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 32px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    align-items: flex-start;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: rgba(27, 32, 43, 0.85);
    border-color: rgba(5, 79, 136, 0.4);
    box-shadow: 0 8px 24px -4px rgba(5, 79, 136, 0.2);
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(5, 79, 136, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #38bdf8;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--muted-color);
    line-height: 1.6;
    font-size: 0.92rem;
}

/* Troubleshooting */
.troubleshooting {
    background: transparent;
}

.accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--card-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.accordion-item.active {
    border-color: rgba(5, 79, 136, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    background-color: rgba(27, 32, 43, 0.8);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: background 0.2s;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--muted-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #38bdf8;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(0, 0, 0, 0.1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 24px 32px;
    border-top: 1px solid var(--border-color);
}

.accordion-inner p {
    color: var(--muted-color);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.accordion-inner p:last-child {
    margin-bottom: 0;
}

.accordion-inner strong {
    display: block;
    color: #f8fafc;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.accordion-inner p span {
    display: block;
    margin-left: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-inner a {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.accordion-inner a:hover {
    border-bottom-color: #38bdf8;
}

/* Contact */
.contact {
    background: transparent;
}

#contact-form {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    margin-bottom: 0;
    color: var(--muted-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(5, 79, 136, 0.05);
    box-shadow: 0 0 0 2px rgba(5, 79, 136, 0.2);
}

/* Autofill style fix */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1e26 inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    transition: background-color 5000s ease-in-out 0s;
}

#contact-form .cta-button {
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    min-width: 200px;
}

/* Commercial Disclosure Page */
.disclosure-list {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 16px;
    background: var(--card-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.disclosure-list dt {
    font-weight: 600;
    color: #38bdf8;
    padding-top: 4px;
}

.disclosure-list dd {
    color: var(--muted-color);
    margin-inline-start: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    line-height: 1.6;
}

.disclosure-list dd ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.disclosure-list dd ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.disclosure-list dd ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.disclosure-list dd ul li:last-child {
    margin-bottom: 0;
}

.disclosure-list dd:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .disclosure-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .disclosure-list dd {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
}

#form-status {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--muted-color);
    background: rgba(11, 13, 17, 0.5);
}

.footer-links {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-links a {
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Legal pages */
.legal-page {
    padding-top: 160px;
    padding-bottom: 120px;
    background: transparent;
}

.legal-page .container {
    max-width: 880px;
    background-color: var(--card-color);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.legal-page .updated-date {
    color: var(--muted-color);
    margin-bottom: 40px;
    text-align: right;
    font-size: 0.9rem;
}

.legal-page section {
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    line-height: 1.8;
    color: var(--muted-color);
    font-size: 1.05rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 28px;
    margin-top: 16px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 12px;
}

.legal-page strong {
    color: var(--text-color);
    font-weight: 600;
}

.legal-page a {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.legal-page a:hover {
    border-bottom-color: #38bdf8;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(20, 24, 32, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--muted-color);
    flex-grow: 1;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: var(--font-main);
    border: 1px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(5, 79, 136, 0.3);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.cookie-btn-info {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--muted-color);
}

.cookie-btn-info:hover {
    border-color: var(--text-color);
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 960px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 16px;
    }

    nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        row-gap: 16px;
        grid-auto-rows: auto;
    }

    .logo {
        justify-self: start;
        grid-column: 1;
        grid-row: 1;
    }

    .lang-switch {
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        width: 100%;
        text-align: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .cta-button,
    .hero-actions .ghost-button {
        width: 100%;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-advantage,
    .pricing-guidance,
    #contact-form,
    .feature-card,
    .pricing-card {
        padding: 24px;
    }


    .hero {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .pricing-advantage {
        flex-direction: column;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-number {
        margin-bottom: 8px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
