@charset "utf-8";

:root {
    --green-primary: #2d8346;
    --green-light: #5fac66;
    --green-dark: #1f5f38;
    --yellow-primary: #f8be41;
    --yellow-soft: #ffe59b;
    --cream: #f8f4e1;
    --white: #ffffff;
    --soft-blue: #dff3ff;
    --blue-accent: #64b8dc;
    --bg-dark: #153823;
    --bg-card: #ffffff;
    --bg-card-hover: #f2fbef;
    --text-primary: #213025;
    --text-secondary: #5b6c60;
    --text-muted: #7e8d82;
    --border-color: #dce8d6;
    --success: #2d8346;
    --danger: #b4483b;
    --shadow-soft: 0 20px 60px rgba(31, 95, 56, 0.12);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Libre Franklin", Arial, sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

p a,
.legal-card a,
.contact-value a {
    color: var(--green-dark);
    font-weight: 600;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
}

.nav.scrolled,
.nav:focus-within {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 12px 30px rgba(31, 95, 56, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo span {
    color: var(--yellow-primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--yellow-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-dark);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: "Libre Franklin", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--green-primary);
    color: var(--green-dark);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    border-color: var(--green-dark);
    box-shadow: 0 10px 24px rgba(45, 131, 70, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--yellow-primary), var(--green-primary));
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(248, 190, 65, 0.24);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    padding: 12px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 96px 36px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(31, 95, 56, 0.16);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 56, 35, 0.55);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--cream);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    border-color: var(--green-primary);
    background: var(--soft-blue);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 36px;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
    display: block;
    padding: 18px 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    color: var(--text-secondary);
    position: relative;
}

.mobile-nav-links a::after {
    content: ">";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: var(--yellow-primary);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--green-dark);
    padding-left: 10px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.menu-open {
    overflow: hidden;
}

section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 68px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--green-primary);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--text-primary);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 126px 0 82px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(248, 244, 225, 0.96), rgba(223, 243, 255, 0.72)),
        radial-gradient(circle at 85% 12%, rgba(248, 190, 65, 0.24), transparent 34%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -16%;
    width: 62%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(95, 172, 102, 0.22), transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 700;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.hero-title {
    font-size: clamp(48px, 6vw, 80px);
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title .gold,
.cta-title .gold {
    color: var(--green-primary);
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-bottom: 54px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 34px;
    border-top: 1px solid var(--border-color);
}

.stat-value {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 1.5;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 44px;
    right: 44px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow-primary), var(--green-primary), transparent);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
}

.hero-card-body {
    padding: 24px 8px 6px;
}

.hero-card-body h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin: 12px 0 10px;
}

.hero-card-body p {
    color: var(--text-secondary);
}

.price-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.price-live::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.services {
    background: var(--white);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.muted-band {
    background: var(--soft-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 44px 28px;
    background: var(--cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--yellow-primary));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    background: var(--bg-card-hover);
    border-color: rgba(45, 131, 70, 0.36);
    box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 131, 70, 0.28);
    border-radius: var(--radius);
    color: var(--green-dark);
    background: var(--white);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.service-title {
    font-size: 23px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.why-gold {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    align-items: center;
}

.why-content {
    padding-right: 28px;
}

.why-content .section-title,
.why-content .section-label {
    text-align: left;
}

.why-list {
    list-style: none;
    margin-top: 34px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid var(--border-color);
}

.why-item:last-child {
    border-bottom: none;
}

.why-number {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    color: var(--yellow-primary);
    line-height: 1;
    min-width: 44px;
    font-weight: 700;
}

.why-text h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.why-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.why-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.why-thumb {
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
}

.why-thumb:hover {
    transform: scale(1.02);
    border-color: var(--green-light);
    z-index: 2;
}

.why-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.why-thumb:hover img {
    transform: scale(1.06);
}

.why-thumb:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.why-note {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--green-dark);
    color: var(--white);
}

.why-note strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
}

.why-note span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.products {
    background: var(--soft-blue);
}

.products-tab-content.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
}

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

.product-image {
    aspect-ratio: 1.18;
    background: var(--cream);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 23px;
    margin-bottom: 5px;
}

.product-weight {
    font-size: 12px;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 13px;
}

.product-info p:last-child {
    color: var(--text-secondary);
    font-size: 14px;
}

.methodology {
    background: var(--cream);
}

.method-grid,
.tips-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.content-grid {
    grid-template-columns: repeat(2, 1fr);
}

.method-card,
.tip-card,
.content-card,
.legal-card,
.disclaimer-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: 0 12px 35px rgba(31, 95, 56, 0.08);
}

.method-card span,
.tip-card span,
.guide-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    background: var(--yellow-soft);
    color: var(--green-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.method-card h3,
.tip-card h3,
.content-card h2 {
    font-size: 25px;
    margin-bottom: 12px;
}

.method-card p,
.tip-card p,
.content-card p,
.legal-card p {
    color: var(--text-secondary);
}

.content-card p + p,
.legal-card p + h2 {
    margin-top: 18px;
}

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--cream);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 26px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    color: var(--text-primary);
}

.faq-question span {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-question span::before,
.faq-question span::after {
    content: "";
    position: absolute;
    background: var(--green-primary);
    transition: transform 0.3s ease;
}

.faq-question span::before {
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
}

.faq-question span::after {
    top: 0;
    left: 8px;
    width: 2px;
    height: 18px;
}

.faq-item.active .faq-question span::after {
    transform: scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 26px 24px;
    color: var(--text-secondary);
}

.cta {
    background:
        linear-gradient(135deg, rgba(45, 131, 70, 0.94), rgba(31, 95, 56, 0.96)),
        radial-gradient(circle at 18% 18%, rgba(248, 190, 65, 0.3), transparent 40%);
    color: var(--white);
}

.cta-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta .section-label {
    color: var(--yellow-soft);
}

.cta-title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 22px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
}

.cta .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
}

.cta .btn-primary {
    background: var(--white);
    color: var(--green-dark);
}

.warning-cta {
    background:
        linear-gradient(135deg, rgba(80, 111, 50, 0.96), rgba(31, 95, 56, 0.96)),
        radial-gradient(circle at 80% 18%, rgba(248, 190, 65, 0.28), transparent 42%);
}

.disclaimer-section {
    background: var(--cream);
    padding: 70px 0;
}

.disclaimer-box {
    max-width: 980px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 17px;
    color: var(--text-secondary);
}

.page-hero {
    padding: 138px 0 80px;
    background:
        linear-gradient(135deg, rgba(248, 244, 225, 0.95), rgba(223, 243, 255, 0.7)),
        radial-gradient(circle at 88% 18%, rgba(248, 190, 65, 0.2), transparent 36%);
}

.compact-hero {
    padding-bottom: 62px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 60px;
    align-items: center;
}

.page-title {
    font-size: clamp(42px, 5vw, 66px);
    margin-bottom: 22px;
}

.page-desc {
    max-width: 760px;
    font-size: 18px;
    color: var(--text-secondary);
}

.page-hero-image {
    background: var(--white);
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.page-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.content-section,
.guide-section,
.legal-section,
.contact {
    background: var(--cream);
}

.guide-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 42px;
    align-items: start;
}

.guide-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 12px 35px rgba(31, 95, 56, 0.08);
}

.guide-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guide-sidebar a:hover {
    background: var(--soft-blue);
    color: var(--green-dark);
}

.guide-articles {
    display: grid;
    gap: 24px;
}

.guide-article {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: 0 12px 35px rgba(31, 95, 56, 0.08);
    scroll-margin-top: 120px;
}

.guide-article h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.guide-article p {
    color: var(--text-secondary);
}

.guide-article p + p,
.guide-article p + .btn,
.check-list {
    margin-top: 18px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow-primary);
    box-shadow: 0 0 0 4px rgba(248, 190, 65, 0.18);
}

.tips-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tip-card {
    min-height: 270px;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.legal-card h2:not(:first-child) {
    margin-top: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 34px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--green-dark);
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--text-primary);
    font-size: 16px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--cream);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: "Libre Franklin", Arial, sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 131, 70, 0.1);
}

.form-input.invalid,
.form-textarea.invalid {
    border-color: var(--danger);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    display: block;
    min-height: 18px;
    margin-top: 7px;
    color: var(--danger);
    font-size: 12px;
    font-weight: 600;
}

.form-submit {
    width: 100%;
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    color: var(--green-dark);
    font-weight: 700;
    text-align: center;
}

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 76px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.25fr 1fr;
    gap: 50px;
    margin-bottom: 52px;
}

.footer .logo {
    display: inline-block;
    color: var(--white);
    margin-bottom: 18px;
}

.footer .logo span {
    color: var(--yellow-primary);
}

.footer-brand p,
.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 18px;
    max-width: 440px;
}

.footer-title {
    font-size: 19px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--yellow-soft);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2500;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(21, 56, 35, 0.18);
    padding: 22px;
}

.cookie-banner.show {
    display: grid;
}

.cookie-copy strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 23px;
    margin-bottom: 4px;
}

.cookie-copy p {
    color: var(--text-secondary);
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .services-grid,
    .products-tab-content.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero-grid,
    .why-grid,
    .page-hero-grid,
    .contact-grid,
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .why-content {
        padding-right: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .method-grid,
    .tips-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    section {
        padding: 76px 0;
    }

    .hero {
        padding: 112px 0 64px;
    }

    .page-hero {
        padding: 118px 0 64px;
    }

    .hero-actions,
    .cta-actions,
    .cookie-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-item {
        display: grid;
        grid-template-columns: 84px 1fr;
        gap: 14px;
        align-items: center;
    }

    .services-grid,
    .products-tab-content.active,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-image-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .why-thumb:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 10;
    }

    .guide-sidebar {
        grid-template-columns: 1fr;
    }

    .guide-article,
    .contact-form,
    .method-card,
    .tip-card,
    .content-card,
    .legal-card,
    .disclaimer-box {
        padding: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 21px;
        letter-spacing: 0.06em;
    }

    .hero-title,
    .page-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-card,
    .page-hero-image {
        padding: 10px;
    }

    .service-card,
    .product-info {
        padding: 24px;
    }

    .faq-question {
        font-size: 21px;
        padding: 21px;
    }
}
