:root {
    --primary: #0f172a;
    --primary-rgb: 15, 23, 42;
    --accent: #0d9488;
    --accent-dark: #0f766e;
    --accent-light: #ccfbf1;
    --accent-soft: #f0fdf4;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-subtle: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 10px -2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 4px 15px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.23);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent-soft);
    transform: translateY(-2px);
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-content {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, var(--accent-soft) 0%, transparent 40%),
                radial-gradient(circle at bottom left, var(--accent-soft) 0%, transparent 40%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
}

.stat-item h4 {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-item p {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.cookie-banner.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
    gap: 5px;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.45s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.burger-line:nth-child(1) { width: 28px; }
.burger-line:nth-child(2) { width: 20px; }
.burger-line:nth-child(3) { width: 24px; }

.burger.open .burger-line:nth-child(1) {
    width: 26px;
    transform: translateY(7px) rotate(45deg);
    background: var(--primary);
}

.burger.open .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open .burger-line:nth-child(3) {
    width: 26px;
    transform: translateY(-7px) rotate(-45deg);
    background: var(--primary);
}

.burger:hover .burger-line { background: var(--accent); }

.desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links, .desktop-only {
        display: none !important;
    }
    .burger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.97) 0%,
        rgba(13, 148, 136, 0.12) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-menu.active .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 2rem 2.5rem;
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.45s ease;
}

.mobile-menu.active .mobile-menu-panel {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
}

.mobile-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo i {
    color: var(--accent);
}

.mobile-close {
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
    z-index: 1200;
}

.mobile-close:hover {
    background: var(--accent);
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu-links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease, padding-left 0.3s ease;
    transform: translateY(40px);
    opacity: 0;
    transition: color 0.3s ease, padding-left 0.3s ease,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) .mobile-menu-link { transform: translateY(0); opacity: 1; transition-delay: 0.18s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) .mobile-menu-link { transform: translateY(0); opacity: 1; transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) .mobile-menu-link { transform: translateY(0); opacity: 1; transition-delay: 0.32s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) .mobile-menu-link { transform: translateY(0); opacity: 1; transition-delay: 0.39s; }

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--white);
    padding-left: 0.5rem;
}

.mobile-menu-link.active {
    color: var(--accent);
}

.mobile-menu-link .link-arrow {
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--accent);
}

.mobile-menu-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-footer {
    width: 100%;
    padding-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-contact-info a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.mobile-contact-info a:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.mobile-menu-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
}

.cookie-settings {
    margin-top: 1rem;
    display: none;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.error-msg {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}



.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.split-text {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-img {
    height: 100%;
    object-fit: cover;
}

.asymmetric-item-1 { grid-column: 1 / 8; }
.asymmetric-item-2 { grid-column: 8 / 13; margin-top: 4rem; }
.asymmetric-item-3 { grid-column: 1 / 6; margin-top: -2rem; }
.asymmetric-item-4 { grid-column: 6 / 13; }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-tag, .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-stats {
        position: static;
        margin-top: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .card {
        padding: 1.5rem;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-text {
        padding: 2rem 1.5rem;
    }
    .split-img {
        height: 250px;
        width: 100%;
    }
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-grid {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 1.25rem;
    }
    .cookie-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .mobile-menu-link {
        font-size: 1.5rem;
    }
    .asymmetric-item-1,
    .asymmetric-item-2,
    .asymmetric-item-3,
    .asymmetric-item-4 {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    .grid-asymmetric {
        display: block;
    }
    .hero-grid {
        gap: 2rem;
    }
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .logo span {
        font-size: 1rem;
    }
    .logo {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 14.5px;
    }
    .container {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 1.65rem;
    }
    .hero p {
        font-size: 0.9375rem;
    }
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    .nav-content {
        height: 68px;
    }
    .card {
        padding: 1.25rem;
    }
    .footer-logo {
        font-size: 1.25rem;
    }
    .footer h4 {
        margin-bottom: 1rem;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
}


@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 1rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    .nav-content {
        height: 70px;
    }
    .logo {
        font-size: 1.25rem;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-stats {
        position: static;
        margin-top: 1rem;
        padding: 1rem;
        gap: 1rem;
    }
    .card {
        padding: 1.5rem;
    }
    .footer-grid {
        gap: 2rem;
    }
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }
}
@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 0.875rem;
    }
    .nav-content {
        height: 60px;
    }
    .logo span {
        font-size: 0.875rem;
    }
    .logo {
        gap: 0.375rem;
    }
    .mobile-toggle {
        font-size: 1.5rem;
    }
    .hero {
        padding-top: 90px;
        padding-bottom: 48px;
    }
    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: -0.01em;
    }
    .hero p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    .hero-grid {
        gap: 1.5rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }
    .stat-item h4 {
        font-size: 1.25rem;
    }
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    .section-padding {
        padding: 2rem 0;
    }
    .card {
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .grid-asymmetric {
        margin: 1rem;
    }
    .asymmetric-item-1,
    .asymmetric-item-2,
    .asymmetric-item-3,
    .asymmetric-item-4 {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-text {
        padding: 1.5rem 0.875rem;
    }
    .split-img {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .footer-logo {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.75rem;
    }
    .footer-text {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    .footer-links a {
        font-size: 0.875rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.375rem;
        text-align: center;
        font-size: 0.75rem;
        padding-top: 1.25rem;
    }
    .cookie-banner {
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        max-width: 100%;
        padding: 1rem;
    }
    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cookie-actions .btn {
        width: 100%;
    }
    .mobile-menu-link {
        font-size: 1.25rem;
    }
    .mobile-menu-links li {
        margin-bottom: 1.25rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .form-group label {
        font-size: 0.875rem;
    }
    .error-msg {
        font-size: 0.7rem;
    }
    h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    h3 {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
    }
    h4 {
        font-size: 0.9375rem;
    }
}