:root {
    --bg-color: #f7f1e8;
    --bg-soft: #eef8fb;
    --text-primary: #17324a;
    --text-secondary: #587086;
    --accent-primary: #2d9ec4;
    --accent-secondary: #d3a66e;
    --accent-deep: #0f6b8a;
    --cream: #fffaf2;
    --sand: #ead9bf;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(45, 158, 196, 0.18);
    --shadow: 0 24px 70px rgba(22, 70, 92, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 5% 5%, rgba(211, 166, 110, 0.22), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(45, 158, 196, 0.18), transparent 34%),
        linear-gradient(135deg, #fffaf2 0%, #eef8fb 50%, #f7f1e8 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.12;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-center { text-align: center; }
.w-full { width: 100%; }

.blob {
    position: absolute;
    filter: blur(70px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 12s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -8%;
    width: 44vw;
    height: 44vw;
    background: radial-gradient(circle, rgba(211, 166, 110, 0.32) 0%, rgba(255,255,255,0) 70%);
}

.blob-2 {
    bottom: 2%;
    right: -10%;
    width: 54vw;
    height: 54vw;
    background: radial-gradient(circle, rgba(45, 158, 196, 0.22) 0%, rgba(255,255,255,0) 70%);
    animation-delay: -5s;
}

.soft-door {
    position: fixed;
    width: 72px;
    height: 112px;
    border: 1px solid rgba(15, 107, 138, 0.1);
    border-radius: 36px 36px 12px 12px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

.door-1 {
    top: 22%;
    right: 7%;
    background: linear-gradient(180deg, rgba(45,158,196,0.14), rgba(255,255,255,0));
}

.door-2 {
    bottom: 18%;
    left: 5%;
    transform: scale(0.75) rotate(-8deg);
    background: linear-gradient(180deg, rgba(211,166,110,0.18), rgba(255,255,255,0));
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4%, 5%) scale(1.08); }
}

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem 0;
    background: rgba(255, 250, 242, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-deep);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--accent-deep);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 0.82rem 1.45rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-deep));
    color: white;
    box-shadow: 0 14px 28px rgba(45, 158, 196, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(45, 158, 196, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.58);
    color: var(--accent-deep);
    border: 1px solid rgba(45, 158, 196, 0.24);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-small { padding: 0.55rem 1rem; font-size: 0.92rem; }
.btn-large { padding: 1rem 2rem; font-size: 1.06rem; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 96px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.42rem 0.95rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(45, 158, 196, 0.2);
    border-radius: 999px;
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1.45rem;
    text-transform: uppercase;
    letter-spacing: 0.085em;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    margin-bottom: 1.35rem;
    letter-spacing: -0.04em;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.14rem;
    margin-bottom: 2rem;
    max-width: 610px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.glass-card,
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.glass-card {
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 80px rgba(22, 70, 92, 0.16);
}

.brand-showcase {
    max-width: 370px;
    margin-left: auto;
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
}

.brand-showcase::after {
    content: '';
    position: absolute;
    width: 92px;
    height: 130px;
    right: -18px;
    top: -22px;
    border-radius: 46px 46px 16px 16px;
    border: 1px solid rgba(211, 166, 110, 0.22);
    background: rgba(211, 166, 110, 0.08);
    transform: rotate(8deg);
}

.hero-logo-art {
    width: 100%;
    max-width: 290px;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(22, 70, 92, 0.14);
    position: relative;
    z-index: 1;
}

.brand-note {
    margin-top: 1.2rem;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.72);
    border: 1px solid rgba(211, 166, 110, 0.22);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.brand-note strong,
.brand-note span {
    display: block;
}

.brand-note strong {
    font-family: var(--font-heading);
    font-size: 1.04rem;
    margin-bottom: 0.25rem;
}

.brand-note span {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.services,
.split-section,
.cta-section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.6rem;
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(45,158,196,0.14), rgba(211,166,110,0.18));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--accent-deep);
}

.service-card h3 {
    margin-bottom: 0.9rem;
    font-size: 1.32rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.small-note {
    max-width: 860px;
    margin: 2rem auto 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(211, 166, 110, 0.18);
    border-radius: 18px;
    padding: 1rem 1.2rem;
}

.split-container {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 4rem;
    align-items: center;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.28rem;
}

.bullet {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent-primary);
    margin-top: 7px;
    box-shadow: 0 0 0 6px rgba(45, 158, 196, 0.12);
    flex-shrink: 0;
}

.feature-content strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.06rem;
}

.feature-content span {
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.circle-animation {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

.circle {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-deep);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(45, 158, 196, 0.2);
    box-shadow: 0 18px 48px rgba(22, 70, 92, 0.1);
    backdrop-filter: blur(5px);
    animation: softPulse 4s ease-in-out infinite;
}

.c1 { top: 0; left: 122px; }
.c2 { top: 122px; right: 0; animation-delay: -1s; }
.c3 { bottom: 0; left: 122px; animation-delay: -2s; }
.c4 { top: 122px; left: 0; animation-delay: -3s; }

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #fffaf2, #e8f7fb);
    border: 1px solid rgba(211, 166, 110, 0.28);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    box-shadow: 0 22px 58px rgba(22, 70, 92, 0.12);
}

@keyframes softPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.launch-section {
    position: relative;
}

.glass-panel {
    padding: 4rem 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.glass-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.glass-panel p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 158, 196, 0.2);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: #8aa0af;
}

input:focus, textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(45, 158, 196, 0.12);
}

.hidden-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-note {
    color: var(--text-secondary);
    font-size: 0.84rem;
    margin: 0.2rem 0 0;
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 3rem;
    background: rgba(255, 250, 242, 0.48);
}

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

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.lang-switcher {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(45, 158, 196, 0.22);
    color: var(--accent-deep);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.42rem 0.5rem;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher:hover,
.lang-switcher:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(45, 158, 196, 0.1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.18s; }
.delay-2 { transition-delay: 0.34s; }

.thanks-logo {
    height: 74px;
    width: auto;
    display: block;
    margin: 0 auto 1.4rem;
}

@media (max-width: 980px) {
    .hero-content,
    .split-container {
        grid-template-columns: 1fr;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        order: 2;
    }

    .brand-showcase {
        margin: 0 auto;
    }

    .split-visual {
        order: 2;
    }

    .split-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 250, 242, 0.96);
        flex-direction: column;
        padding: 1.7rem 0;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(22,70,92,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 96px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 0.6rem;
    }

    .circle-animation {
        width: 310px;
        height: 310px;
    }

    .circle {
        width: 98px;
        height: 98px;
        font-size: 0.9rem;
    }

    .c1 { left: 106px; }
    .c2 { top: 106px; }
    .c3 { left: 106px; }
    .c4 { top: 106px; }

    .circle-center {
        width: 114px;
        height: 114px;
        font-size: 0.9rem;
    }
}
