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

        body {
            font-family: 'Inter', sans-serif;
            background: #FEFCF9;
            color: #1C2A2F;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Improved line-height globally */
        p, li, .drawer-nav a, .card-premium p, .hero-content p, .section-sub, .quote-block p, footer, .drawer-contact p {
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        h1, h2, h3, .logo, .menu-title, .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.25;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Premium Buttons */
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            backdrop-filter: blur(4px);
            line-height: 1;
        }

        .btn-primary {
            background: #1F6E8C;
            color: white;
            border: none;
            box-shadow: 0 8px 20px rgba(31, 110, 140, 0.25);
        }

        .btn-primary:hover {
            background: #0E5A75;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(31, 110, 140, 0.35);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid rgba(31, 110, 140, 0.5);
            color: #1F6E8C;
        }

        .btn-outline:hover {
            border-color: #1F6E8C;
            background: rgba(31, 110, 140, 0.05);
            transform: translateY(-2px);
        }

        /* HEADER */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            backdrop-filter: blur(16px);
            background: rgba(254, 252, 249, 0.92);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: 0.25s;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1F6E8C;
            letter-spacing: -0.5px;
        }

        .logo p {
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: #2C7A64;
            font-weight: 500;
        }

        /* Desktop nav */
        .nav-links {
            display: flex;
            gap: 2.8rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1A3F47;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: #1F6E8C;
        }

        .menu-icons {
            display: flex;
            gap: 1rem;
        }

        .menu-icon-btn {
            background: rgba(31, 110, 140, 0.08);
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            color: #1F6E8C;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.2s;
        }

        .menu-icon-btn:hover {
            background: #1F6E8C;
            color: white;
        }

        /* DRAWER PANELS */
        .drawer {
            position: fixed;
            top: 0;
            width: 420px;
            max-width: 88vw;
            height: 100vh;
            background: #FFFFFF;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
            z-index: 1100;
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow-y: auto;
            padding: 2rem 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .drawer-left {
            left: 0;
            transform: translateX(-100%);
            border-right: 1px solid #E9F0F2;
        }

        .drawer-right {
            right: 0;
            transform: translateX(100%);
            border-left: 1px solid #E9F0F2;
        }

        .drawer.open-left {
            transform: translateX(0);
        }

        .drawer.open-right {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #EFF3F5;
            padding-bottom: 1rem;
        }

        .drawer-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1C2A2F;
        }

        .close-drawer {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7D9DA8;
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .drawer-nav a {
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 500;
            color: #244B56;
            padding: 0.5rem 0;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }

        .drawer-nav a:hover {
            color: #1F6E8C;
            border-bottom-color: #1F6E8C;
        }

        .drawer-contact {
            margin-top: auto;
            background: #F4F9FB;
            padding: 1.8rem;
            border-radius: 28px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            background: linear-gradient(125deg, #EBF3F0 0%, #F3F7F2 100%);
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }

        .hero-content {
            flex: 1.2;
            min-width: 280px;
        }

        .hero-badge {
            background: #D9E9EF;
            display: inline-block;
            padding: 6px 18px;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #1F6E8C;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            line-height: 1.2;
            margin: 1rem 0 1.2rem;
            color: #0F3B46;
        }

        .hero-highlight {
            color: #1F6E8C;
            border-bottom: 3px solid #B9D8E3;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #2C5F6E;
            max-width: 550px;
            line-height: 1.6;
        }

        .hero-image {
            flex: 1;
            background: linear-gradient(145deg, #C8DFE6, #B2CFD9);
            border-radius: 48px;
            height: 500px;
            background-image: url('/images/hero.jpg');
            background-size: cover;
            background-position: center;
            box-shadow: 0 30px 35px -15px rgba(0, 0, 0, 0.15);
        }

        /* Sections */
        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 2.9rem;
            margin-bottom: 1rem;
            text-align: center;
            color: #0C3B46;
        }

        .section-sub {
            text-align: center;
            color: #527A86;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }

        .cards-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .card-premium {
            background: white;
            border-radius: 36px;
            padding: 2rem;
            flex: 1 1 280px;
            transition: 0.25s;
            border: 1px solid #E2EDEF;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.05);
        }

        .card-premium:hover {
            transform: translateY(-8px);
            border-color: #C3DCE3;
            box-shadow: 0 20px 30px -12px rgba(31, 110, 140, 0.15);
        }

        .card-premium p {
            line-height: 1.6;
        }

        .card-icon {
            font-size: 2.8rem;
            color: #1F6E8C;
            margin-bottom: 1.2rem;
        }

        /* PROMO BLOCK (акция) */
        .promo-block {
            background: linear-gradient(135deg, #1F6E8C 0%, #124F66 100%);
            border-radius: 48px;
            padding: 3rem 2rem;
            margin: 2rem 0;
            color: white;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: 0 15px 35px rgba(31,110,140,0.3);
        }
        .promo-text {
            flex: 2;
        }
        .promo-text h3 {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        .promo-text p {
            font-size: 1.05rem;
            line-height: 1.5;
            opacity: 0.9;
            max-width: 600px;
        }
        .promo-badge {
            background: #FFC857;
            color: #1F3E48;
            padding: 6px 16px;
            border-radius: 40px;
            font-weight: 800;
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.8rem;
        }
        .promo-button {
            background: white;
            color: #1F6E8C;
            border: none;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 60px;
            text-decoration: none;
            transition: 0.2s;
            display: inline-block;
            box-shadow: 0 8px 18px rgba(0,0,0,0.1);
        }
        .promo-button:hover {
            transform: scale(1.02);
            background: #FFF4E0;
        }

        /* BLOG GRID */
        .blog-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .blog-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            flex: 1 1 300px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            border: 1px solid #E9F0F2;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 36px -12px rgba(0,0,0,0.12);
            border-color: #C2DAE2;
        }
        .blog-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        .blog-content {
            padding: 1.8rem;
        }
        .blog-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1F6E8C;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
        .blog-excerpt {
            line-height: 1.6;
            color: #3C5E6B;
            margin-bottom: 1.2rem;
        }
        .read-more {
            color: #1F6E8C;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .stat-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            background: #1F6E8C10;
            border-radius: 70px;
            padding: 2.5rem;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1F6E8C;
        }
        .quote-block {
            background: #F1F7F5;
            border-radius: 48px;
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
        }
        footer {
            background: #0C2F38;
            color: #CCE3E8;
            padding: 50px 0 30px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        @media (max-width: 820px) {
            .nav-links { display: none; }
            .hero-content h1 { font-size: 2.7rem; }
            .section { padding: 60px 0; }
            .container { padding: 0 24px; }
            .promo-block { flex-direction: column; text-align: center; }
        }
        @media (max-width: 640px) {
            .hero-content h1 { font-size: 2.2rem; }
            .stat-grid { flex-direction: column; align-items: center; gap: 1rem; }
            .section-title { font-size: 1.9rem; }
        }
        .price-tag {
            font-weight: 800;
            color: #1F6E8C;
            font-size: 1.7rem;
        }
        .text-med { color: #1F6E8C; }
        .contact-list i { width: 30px; margin-right: 12px; color: #1F6E8C; }