@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== PALETTE FROM LOGO: sky-blue → teal → sage-green → yellow-green ===== */
:root {
    --blue:         #6BBFD8;
    --blue-light:   #A8DCE8;
    --blue-dark:    #4A9CB5;

    --teal:         #5AAFC0;
    --teal-light:   #8DCFDA;
    --teal-dark:    #3A8FA0;

    --green:        #7DBB7E;
    --green-light:  #A8CFA9;
    --green-dark:   #5A9B5B;

    --lime:         #AABF5E;
    --lime-light:   #C8D890;
    --lime-dark:    #88A040;

    --charcoal:     #2C3535;
    --text-dark:    #2C3535;
    --text-medium:  #4E5E5E;
    --text-light:   #7E9090;

    --bg-white:     #ffffff;
    --bg-ice:       #F2F9FB;   /* very light blue tint  */
    --bg-mist:      #EFF7F0;   /* very light green tint */
    --bg-soft:      #F6FAF2;
    --border:       #D6EBE8;

    --shadow-sm:    0 2px 8px rgba(90,175,192,0.08);
    --shadow-md:    0 6px 24px rgba(90,175,192,0.12);
    --shadow-lg:    0 12px 48px rgba(90,175,192,0.14);

    --radius:       14px;
    --radius-lg:    22px;
    --transition:   0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 16px rgba(90,175,192,0.10);
    padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
    font-size: 0.88rem; font-weight: 500; color: var(--text-medium);
    position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--blue)) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 3px 12px rgba(90,175,192,0.28);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-dark); transition: var(--transition); border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(160deg, var(--bg-ice) 0%, var(--bg-white) 45%, var(--bg-mist) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -100px; right: -80px;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(107,191,216,0.15) 0%, transparent 65%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -80px; left: -60px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(125,187,126,0.12) 0%, transparent 65%);
    border-radius: 50%;
}
.hero .container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
    padding-top: 100px; padding-bottom: 60px;
}
.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(90,175,192,0.10); color: var(--teal-dark);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 24px;
    border: 1px solid rgba(90,175,192,0.20);
}
.hero h1 { font-size: 3.4rem; margin-bottom: 20px; color: var(--text-dark); }
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--teal-dark), var(--green-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 1.08rem; color: var(--text-medium); margin-bottom: 36px; line-height: 1.85; }

.hero-buttons { display: flex; gap: 16px; align-items: center; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff; padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(90,175,192,0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(90,175,192,0.42); opacity: 0.93; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-dark);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 0.92rem;
    border: 2px solid var(--border); cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper {
    width: 420px; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-ice);
}
.hero-image-wrapper img { width: 100%; height: auto; display: block; }

.floating-card {
    position: absolute; background: var(--bg-white); border-radius: var(--radius);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 12px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border);
}
.floating-card.card-1 { top: 20px; right: -30px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 40px; left: -30px; animation-delay: 3s; }
.floating-card .icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floating-card .icon.blue { background: rgba(107,191,216,0.14); color: var(--blue-dark); }
.floating-card .icon.green { background: rgba(125,187,126,0.14); color: var(--green-dark); }
.floating-card .info small { font-size: 0.73rem; color: var(--text-light); }
.floating-card .info strong { display: block; font-size: 0.92rem; color: var(--text-dark); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== SECTIONS COMMON ===== */
section { padding: 96px 0; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--teal-dark); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-label::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 2px;
}
.section-title { font-size: 2.5rem; margin-bottom: 16px; color: var(--text-dark); }
.section-desc { font-size: 1.02rem; color: var(--text-medium); max-width: 560px; line-height: 1.82; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== AUDIENCE ===== */
.audience { background: var(--bg-white); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.audience-card {
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.audience-card-image {
    height: 230px; overflow: hidden; background: var(--bg-ice);
}
.audience-card-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: transform 0.5s ease;
}
.audience-card:hover .audience-card-image img { transform: scale(1.03); }

.audience-card-body { padding: 24px 26px; background: var(--bg-white); }

.audience-card-body .card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.audience-card:nth-child(1) .card-icon { background: rgba(107,191,216,0.14); color: var(--blue-dark); }
.audience-card:nth-child(2) .card-icon { background: rgba(125,187,126,0.14); color: var(--green-dark); }
.audience-card:nth-child(3) .card-icon { background: rgba(170,191,94,0.14); color: var(--lime-dark); }

.audience-card-body h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text-dark); }
.audience-card-body p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: var(--bg-ice); }

.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-visual { position: relative; }
.about-image { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg-ice); }
.about-image img { width: 100%; height: auto; display: block; }
.about-decor {
    position: absolute; bottom: -20px; right: -20px;
    width: 150px; height: 150px;
    border: 3px solid var(--blue-light); border-radius: var(--radius-lg);
    z-index: -1; opacity: 0.5;
}

.about-content p { font-size: 1.02rem; color: var(--text-medium); margin-bottom: 24px; line-height: 1.85; }

.about-features { display: flex; gap: 28px; margin-top: 8px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature .check {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(125,187,126,0.14); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature span { font-weight: 500; font-size: 0.92rem; color: var(--text-dark); }

/* ===== PRODUCTS LIST ===== */
.products { background: var(--bg-mist); }

.products .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.products-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.product-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; background: #fff;
    border-radius: var(--radius); transition: var(--transition);
    border: 1px solid transparent;
}
.product-item:hover { border-color: var(--teal-light); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.product-item .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green)); flex-shrink: 0;
}
.product-item span { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }

/* ===== FAQ ===== */
.faq { background: var(--bg-white); }

.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s; }
.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; text-align: left;
    font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--text-dark);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-ice); }
.faq-item.open .faq-question { background: var(--bg-ice); color: var(--teal-dark); }

.faq-icon {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-mist); position: relative;
    transition: background 0.2s, transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
    content: ''; position: absolute; background: var(--teal-dark);
    border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: transform 0.3s, opacity 0.3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon { background: rgba(125,187,126,0.25); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.97rem; color: var(--text-medium); line-height: 1.8; }

/* ===== QUALITY ===== */
.quality { background: var(--bg-mist); }

.quality-content { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.quality-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: var(--transition);
}
.quality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quality-card h4 {
    font-size: 1.1rem; margin-bottom: 14px; color: var(--text-dark);
    display: flex; align-items: center; gap: 10px;
}
.quality-card p { font-size: 0.94rem; color: var(--text-medium); line-height: 1.8; }

/* ===== STATS ===== */
.stats { background: var(--bg-white); padding: 72px 0; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.stat-item {
    text-align: center; padding: 32px 20px;
    background: var(--bg-ice); border-radius: var(--radius-lg);
    border: 1px solid var(--border); transition: var(--transition);
}
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
    font-family: 'Playfair Display', serif; font-size: 2.7rem; font-weight: 700;
    background: linear-gradient(135deg, var(--teal-dark), var(--green-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: block; margin-bottom: 4px;
}
.stat-label { font-size: 0.88rem; color: var(--text-medium); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-ice); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testimonial-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars { color: #f0b429; font-size: 0.92rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card blockquote {
    font-size: 0.93rem; color: var(--text-medium);
    line-height: 1.8; margin-bottom: 22px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 600; font-size: 0.95rem; flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--blue-dark) 50%, var(--green-dark) 100%);
    padding: 80px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 { color: #fff; font-size: 2.3rem; margin-bottom: 14px; }
.cta-section p {
    color: rgba(255,255,255,0.85); font-size: 1.03rem; margin-bottom: 30px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--teal-dark);
    padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
    border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(0,0,0,0.18); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-ice); padding: 58px 0 28px; border-top: 1px solid var(--border); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo img { height: 44px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.72; max-width: 280px; }

.footer-col h5 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-dark); font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--text-medium); }
.footer-col a:hover { color: var(--teal-dark); }

.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.83rem; color: var(--text-light); }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(90,175,192,0.10); color: var(--text-medium);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
    border: 1px solid var(--border);
}
.social-links a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 150px 0 72px;
    background: linear-gradient(140deg, var(--bg-ice) 0%, var(--bg-white) 50%, var(--bg-mist) 100%);
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -30%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(107,191,216,0.10) 0%, transparent 65%);
    border-radius: 50%;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--text-medium); max-width: 580px; margin: 0 auto; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--bg-white); padding: 80px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon-box {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(90,175,192,0.10); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--teal-dark);
}
.contact-info-item h5 { font-size: 0.92rem; margin-bottom: 3px; color: var(--text-dark); font-family: 'Inter', sans-serif; font-weight: 600; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-medium); }

.contact-form { background: var(--bg-ice); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.45rem; margin-bottom: 22px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 11px 15px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    color: var(--text-dark); background: var(--bg-white);
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(90,175,192,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== NEWS ===== */
.news { padding: 90px 0; background: var(--bg-white); }

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-ice);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.news-card-image {
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.04); }

.news-card-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.news-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
}

.news-card-body p {
    color: var(--text-medium);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-decoration: none;
    margin-top: 4px;
    transition: gap var(--transition), color var(--transition);
}
.news-link:hover { gap: 10px; color: var(--blue-dark); }

/* Skeleton loader */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position:  400px 0; }
}
.skel {
    border-radius: 4px;
    background: linear-gradient(90deg, #e8edf0 25%, #f4f6f8 50%, #e8edf0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
}
.skel-img  { width: 100%; height: 220px; border-radius: 0; }
.skel-line { height: 12px; margin: 10px 0; }
.skel-line.short { width: 40%; height: 10px; }
.skel-line.mid   { width: 60%; }

/* ===== MAP ===== */
.map-section {
    background: var(--bg-mist);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 70px; padding-bottom: 40px; }
    .hero-content { max-width: 100%; order: 2; }
    .hero-visual { display: flex; order: 1; justify-content: center; }
    .hero-image-wrapper { max-width: 480px; width: 100%; }
    .floating-card { display: none; }
    .hero-buttons { justify-content: center; flex-wrap: nowrap; }
    .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.85rem; white-space: nowrap; }
    .hero h1 { font-size: 2.6rem; }
    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .about-decor { display: none; }
    .about-visual { width: 100%; }
    .about-image { width: 100%; max-width: 100%; }
    .about-image img { width: 100%; height: auto; max-width: 100%; }
    .about-features { flex-wrap: wrap; gap: 16px; }
    .about-feature { min-width: 0; }
    .products .container { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh; background: rgba(255,255,255,0.98);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 28px; z-index: 999;
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; z-index: 1001; }

    .hero .container { padding-top: 62px; }
    .hero h1 { font-size: 2rem; }
    .audience-grid { grid-template-columns: 1fr; gap: 18px; }
    .news-card { grid-template-columns: 1fr; }
    .news-card-image { min-height: 200px; height: 200px; }
    .news-card-body { padding: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .quality-content { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 1.9rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .products-list { grid-template-columns: 1fr; }
}
