:root {
    --green: #43b900;
    --green-dark: #2f8500;
    --black: #111111;
    --white: #ffffff;
    --soft: #f5f7f2;
    --text: #222222;
    --muted: #666666;
    --border: #e6e6e6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--green);
    padding: 14px 0;
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a:hover {
    opacity: 0.7;
}

.hero {
    background:
        linear-gradient(135deg, var(--green) 0%, var(--green) 45%, var(--soft) 45%, var(--soft) 100%);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.eyebrow.light {
    color: var(--white);
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -0.06em;
    color: var(--black);
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 0 32px;
}

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

.hero-actions.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid transparent;
}

.btn-dark {
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-light,
.btn-outline {
    border-color: var(--green);
    color: var(--green-dark);
    background: var(--white);
}

.btn-light:hover,
.btn-outline:hover {
    background: rgba(67, 185, 0, 0.08);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::before {
    width: 620px;
    height: 620px;
}

.hero-visual img {
    position: relative;
    z-index: 1;
    width: 115%;
    max-width: 680px;
    object-fit: contain;
    transform: translate(40px, 20px) rotate(-3deg);
    filter: drop-shadow(0 34px 55px rgba(0,0,0,0.20));
}

.badge {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.image-placeholder {
    height: 280px;
    margin: 24px 0;
    border-radius: 18px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
}

.product-preview h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.product-preview p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading span {
    color: var(--green-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 12px 0 0;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.product-worlds {
    background: var(--white);
}

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

.world-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0,0,0,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.world-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.world-image {
    height: 260px;
    background: #f5f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
}

.world-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.world-card:hover .world-image img {
    transform: scale(1.06);
}

.world-content {
    padding: 24px;
}

.world-content span {
    display: inline-block;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.world-content h3 {
    font-size: 26px;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.world-content p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 18px;
}

.world-content a {
    display: inline-flex;
    font-weight: 900;
    color: var(--black);
    border-bottom: 3px solid var(--green);
    padding-bottom: 3px;
}

.why-section {
    background: var(--green);
    padding: 80px 0;
    color: var(--black);
}

.why-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.why-intro h2 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    margin: 0 0 18px;
    letter-spacing: -0.05em;
}

.why-intro p {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.65;
    margin: 0;
    color: rgba(0,0,0,0.74);
    font-weight: 600;
}

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

.why-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.why-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.why-card p {
    margin: 0;
    color: rgba(0,0,0,0.68);
    line-height: 1.55;
    font-weight: 600;
}

.green-section h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.05em;
}

.marketplace-note {
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
}

.benefits p {
    font-size: 18px;
    font-weight: 700;
}

.cta-box {
    background: var(--soft);
    border-radius: 30px;
    padding: 54px 30px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin: 0 0 12px;
    letter-spacing: -0.05em;
}

.cta-logo {
    width: 220px;
    max-width: 80%;
    display: block;
    margin: 0 auto 22px;
}

.cta-box p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: clamp(34px, 4vw, 54px);
    margin: 0 0 14px;
    letter-spacing: -0.05em;
    line-height: 1;
}

.cta-inline-logo {
    height: 54px;
    width: auto;
    display: block;
}

.site-footer {
    background: var(--green);
    color: var(--black);
    padding: 54px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.footer-brand strong {
    font-size: 26px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 430px;
    color: rgba(0,0,0,0.72);
    margin: 10px 0 0;
    font-weight: 600;
    line-height: 1.55;
}

.footer-column h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 800;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    padding-bottom: 2px;
}

.footer-column a:hover {
    border-bottom-color: var(--black);
}

.footer-logo {
    height: 42px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    max-width: 520px;
    font-size: 15px;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.72);
    border-radius: 999px;
    padding: 8px 14px;
}

.extensions-section {
    background: var(--soft);
}

.extensions-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.extensions-intro h2 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    margin: 0 0 18px;
    letter-spacing: -0.05em;
}

.extensions-intro p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 28px;
}

.extensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.extension-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,0,0,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.extension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.11);
}

.extension-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #ffffff;
    padding: 18px;
    display: block;
}

.extension-card div {
    padding: 22px;
}

.extension-card span {
    display: inline-block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.extension-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.extension-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.products-hero {
    background: var(--soft);
    padding: 90px 0 70px;
}

.products-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 22px;
    letter-spacing: -0.06em;
}

.products-hero p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0,0,0,0.06);
    transition: transform 0.22s ease,
                box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background: var(--soft);
    padding: 30px;
}

.product-card-content {
    padding: 28px;
}

.product-card-content span {
    display: inline-block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.product-card-content h3 {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
}

.product-card-content p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px;
}

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

.product-hero {
    background: var(--soft);
    padding: 90px 0;
}

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

.product-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -0.06em;
}

.product-hero p {
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 34px;
}

.product-hero-image {
    display: flex;
    justify-content: center;
}

.product-hero-image img {
    width: 100%;
    max-width: 620px;
    object-fit: contain;
    filter: drop-shadow(0 32px 54px rgba(0,0,0,0.14));
}

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

.detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.detail-card h3 {
    font-size: 26px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
}

.detail-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
}

.extensions-showcase {
    background: var(--green);
    padding: 80px 0;
}

.extensions-showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.extensions-showcase h2 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    margin: 0 0 18px;
    letter-spacing: -0.05em;
}

.extensions-showcase p {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(0,0,0,0.72);
}

.extensions-showcase-image {
    display: flex;
    justify-content: center;
}

.extensions-showcase-image img {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
}

.related-products {
    background: var(--white);
}

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

.related-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.05);
    transition: transform 0.22s ease,
                box-shadow 0.22s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(0,0,0,0.11);
}

.related-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: var(--soft);
    padding: 22px;
}

.related-content {
    padding: 24px;
}

.related-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.related-content p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.related-content a {
    display: inline-flex;
    font-weight: 900;
    border-bottom: 3px solid var(--green);
    padding-bottom: 3px;
}

.about-hero {
    background: var(--soft);
    padding: 90px 0;
}

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

.about-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -0.06em;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.about-text h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -0.05em;
}

.about-text p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.about-values {
    display: grid;
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.05);
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-hero {
    background: var(--soft);
    padding: 90px 0 70px;
}

.contact-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -0.06em;
}

.contact-hero p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.05);
}

.contact-card span {
    display: inline-block;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.contact-card h2 {
    font-size: 36px;
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -0.04em;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 24px;
}

.contact-link {
    display: inline-flex;
    font-size: 24px;
    font-weight: 900;
    border-bottom: 3px solid var(--green);
    padding-bottom: 4px;
}

.personalized-hero {
    background: var(--soft);
    padding: 90px 0;
}

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

.personalized-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -0.06em;
}

.personalized-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 34px;
}

.personalized-hero-image {
    display: flex;
    justify-content: center;
}

.personalized-hero-image img {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
    filter: drop-shadow(0 32px 54px rgba(0,0,0,0.14));
}

.personalized-page-hero {
    background:
        radial-gradient(circle at 78% 48%, rgba(67,185,0,0.10), transparent 34%),
        linear-gradient(90deg, #fffaf5 0%, #f8efe8 100%);
    padding: 90px 0 70px;
    overflow: hidden;
}

.personalized-page-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.personalized-page-content h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.95;
    margin: 0 0 26px;
    letter-spacing: -0.055em;
}

.personalized-page-content p {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 32px;
}

.personalized-page-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.personalized-page-image img {
    width: 100%;
    max-width: 660px;
    object-fit: contain;
    filter: drop-shadow(0 34px 58px rgba(0,0,0,0.12));
}

.personalized-highlights {
    display: flex;
    gap: 34px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.highlight-item svg {
    width: 22px;
    height: 22px;
    stroke: #555;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    opacity: 0.95;
}

.highlight-item svg circle {
    fill: #5e5e5e;
    stroke: none;
}

.highlight-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    color: #444;
}

.personalized-inspiration {
    background: var(--white);
}

.personalized-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.personalized-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0,0,0,0.06);
}

.personalized-card img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    background: #f4eee7;
    padding: 24px;
    display: block;
}

.personalized-card-content {
    position: relative;
    padding: 26px 78px 28px 26px;
}

.personalized-card-content h3 {
    font-size: 25px;
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.personalized-card-content p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.card-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;

    width: 48px;
    height: 48px;
    border-radius: 16px;

    background: #dfe7c8;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease, background 0.2s ease;
}

.card-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #173325;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-arrow:hover {
    transform: translateX(2px);
    background: #d5ddba;
}

.personalized-info-section {
    padding-top: 0;
}

.personalized-info-box {
    background: #f6f4ea;
    border-radius: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
}

.personalized-info-item {
    padding: 34px 44px;
    border-right: 1px solid rgba(0,0,0,0.10);
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 20px;
    align-items: start;
}

.personalized-info-item:last-child {
    border-right: none;
}

.info-icon {
    margin: 0;
    grid-row: 1 / span 3;
}

.info-icon svg {
    width: 34px;
    height: 34px;
    stroke: #173325;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1;
}

.personalized-info-item h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.personalized-info-item p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 22px;
    font-size: 15px;
}

.personalized-info-item .btn {
    min-height: 48px;
    padding: 0 24px;
    width: fit-content;
    background: #0f3b25;
    color: #fff;
}

.personalized-info-item .btn:hover {
    background: #0b2d1c;
}

.color-dots {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 4px;
}

.color-dots i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: block;
    border: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 850px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual img {
        width: 100%;
        max-width: 420px;
        transform: none;
    }

    .hero-visual {
        overflow: hidden;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero {
        background: var(--green);
        padding: 56px 0;
    }

    .hero-grid,
    .why-layout,
    .why-grid,
    .world-grid,
    .extensions-layout,
    .extensions-grid,
    .products-grid,
    .product-hero-grid,
    .detail-grid,
    .extensions-showcase-grid,
    .related-grid,
    .about-hero-grid,
    .about-content,
    .contact-grid,
    .personalized-hero-grid,
    .personalized-page-grid,
    .personalized-card-grid,
    .personalized-info-box {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 220px;
    }

    .personalized-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.10);
    }

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

.legal-hero {
    background: var(--soft);
    padding: 90px 0 70px;
}

.legal-hero-content {
    max-width: 760px;
}

.legal-hero h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 0.95;
    margin: 0 0 22px;
    letter-spacing: -0.06em;
}

.legal-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

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

.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.05);
}

.legal-card span {
    display: inline-block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.legal-card h2 {
    font-size: 28px;
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.legal-card a {
    font-weight: 700;
    border-bottom: 2px solid var(--green);
}

.legal-content-page {
    max-width: 920px;
}

.legal-text-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.05);
}

.legal-text-card h2 {
    font-size: 28px;
    line-height: 1.1;
    margin: 34px 0 14px;
    letter-spacing: -0.03em;
}

.legal-text-card h2:first-child {
    margin-top: 0;
}

.legal-text-card p,
.legal-text-card li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.legal-text-card a {
    font-weight: 800;
    border-bottom: 2px solid var(--green);
}

.legal-text-card ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

@media (max-width: 850px) {

    .legal-grid {
        grid-template-columns: 1fr;
    }

}

