:root {
    --primary-color: #2D5A7B;
    --secondary-color: #4A90B8;
    --accent-color: #F4A261;
    --accent-light: #FFE4C9;
    --text-dark: #1A1A2E;
    --text-light: #5C5C7A;
    --bg-light: #F8FAFC;
    --bg-cream: #FDF9F3;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(45, 90, 123, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 90, 123, 0.1);
    --shadow-lg: 0 16px 48px rgba(45, 90, 123, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
    z-index: 10000;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 14px;
}

.btn-accept, .btn-decline {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: #1E3F56;
    transform: translateY(-2px);
}

.btn-decline {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-decline:hover {
    background: var(--border-color);
}

/* Header */
.main-header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 18px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo i {
    font-size: 32px;
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.nav-menu a:not(.btn-contact):not(.btn-breathing):hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.btn-breathing {
    padding: 10px 20px !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    margin-left: 8px !important;
}

.btn-breathing:hover {
    background: #1E3F56 !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-contact {
    padding: 10px 20px !important;
    background: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}

.btn-contact:hover {
    background: #E8923D !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-sm) !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, #E8F4F8 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(244, 162, 97, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(45, 90, 123, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.breath-animation {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(45, 90, 123, 0.1);
    animation: pulse-ring 8s ease-in-out infinite;
}

.breath-animation:nth-child(1) {
    top: 10%;
    right: 5%;
}

.breath-animation.delay-1 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2.5s;
    width: 400px;
    height: 400px;
}

.breath-animation.delay-2 {
    top: 50%;
    right: 15%;
    animation-delay: 5s;
    width: 300px;
    height: 300px;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 100px 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.title-line {
    display: block;
    animation: fadeSlideIn 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(2) {
    animation-delay: 0.25s;
    color: var(--primary-color);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #1E3F56;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--text-light);
    background: white;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--text-dark);
    margin-bottom: 18px;
}

.section-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--bg-cream), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-link:hover {
    gap: 14px;
    color: var(--secondary-color);
}

/* Content Section Hero */
.content-section-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin: 70px 0;
}

.content-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* About Preview */
.about-preview {
    padding: 120px 0;
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--text-dark);
    margin-bottom: 26px;
}

.about-text p {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 17px;
}

.disclaimer-text {
    background: white;
    padding: 18px;
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
}

.about-visual {
    position: relative;
    height: 420px;
}

.visual-element {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Blog Preview */
.blog-preview {
    padding: 120px 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    margin-bottom: 56px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 28px;
}

.blog-content time {
    display: block;
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.read-more:hover {
    gap: 14px;
    color: var(--secondary-color);
}

.blog-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

.footer-col h4 {
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

.footer-disclaimer {
    margin-top: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    opacity: 0.85;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-company-info {
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.footer-company-info h4 {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--accent-color);
    grid-column: 1 / -1;
}

.footer-company-info p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 0;
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 32px 28px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 18px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 16px 20px;
        border-radius: var(--radius-sm);
        background: var(--bg-light);
        font-size: 15px;
    }
    
    .btn-contact,
    .btn-breathing {
        text-align: center;
        margin-left: 0 !important;
    }
    
    .about-content,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        height: 320px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept, .btn-decline {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
