/* === VEEBIMETS.EE — Premium Redesign v2.0 === */

/* --- CUSTOM PROPERTIES --- */
:root {
    --color-bg: #FAFAF8;
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #111827;
    --color-bg-dark-alt: #1a1a2e;

    --color-text-primary: #111827;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;
    --color-text-inverse: #FFFFFF;

    --color-accent-green: #2C3E30;
    --color-accent-gold: #D4A373;
    --color-accent-gold-hover: #C4935F;

    --color-border: rgba(17, 24, 39, 0.06);
    --color-border-hover: rgba(17, 24, 39, 0.12);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    --text-hero: clamp(40px, 5.5vw, 72px);
    --text-h2: clamp(32px, 3.5vw, 52px);
    --text-h3: clamp(20px, 2vw, 28px);
    --text-body-lg: clamp(18px, 1.5vw, 22px);
    --text-body: 17px;
    --text-body-sm: 15px;
    --text-caption: 13px;
    --text-overline: 12px;

    --space-section: clamp(56px, 7vw, 100px);
    --space-xl: 56px;
    --space-lg: 36px;
    --space-md: 32px;
    --space-sm: 16px;
    --space-xs: 8px;

    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;
    --container-padding: clamp(20px, 4vw, 40px);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-btn: 6px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.2s ease;
    --transition-slow: 0.4s var(--ease-out);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- CONTAINERS --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

/* --- SECTION HEAD (reusable) --- */
.section-head { margin-bottom: clamp(28px, 3.5vw, 56px); }
.section-head__label {
    display: block;
    font-size: var(--text-overline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}
.section-head__title { font-size: var(--text-h2); max-width: 600px; }
.section-head__sub {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
    max-width: 500px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--color-text-primary); color: var(--color-text-inverse); }
.btn--primary:hover { background: #1F2937; }

.btn--gold { background: var(--color-accent-gold); color: var(--color-text-primary); }
.btn--gold:hover { background: var(--color-accent-gold-hover); }

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--color-border-hover);
    color: var(--color-text-primary);
}
.btn--outline:hover { border-color: var(--color-text-primary); }

.link--arrow {
    font-weight: 600;
    font-size: var(--text-body-sm);
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.link--arrow span { transition: transform 0.2s ease; }
.link--arrow:hover span { transform: translateX(4px); }

/* === HEADER === */
header {
    background: rgba(250, 250, 248, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
header.scrolled { border-bottom-color: var(--color-border); }

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }

header nav ul {
    display: flex;
    gap: 32px;
}

header nav ul li a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}
header nav ul li a:hover { color: var(--color-text-primary); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: 0.3s ease;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu__logo { height: 36px; width: auto; margin-bottom: var(--space-lg); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
}

@media (max-width: 768px) {
    header nav ul { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
}

/* === SECTION 1: HERO === */
.hero {
    padding: clamp(80px, 9vw, 130px) 0 var(--space-section);
    background: var(--color-bg);
    overflow: hidden;
    min-height: 80vh;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 480px;
    line-height: 1.6;
}

.hero__stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.hero__stat {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

.hero__visual {
    position: relative;
    height: 540px;
}

.hero__visual::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -60px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.06) 0%, rgba(212, 163, 115, 0.02) 40%, transparent 70%);
    z-index: 0;
}

.hero__screenshot {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}
.hero__screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero__screenshot--1 { width: 440px; height: 280px; top: 0; right: 0; z-index: 3; }
.hero__screenshot--2 { width: 360px; height: 230px; top: 220px; right: 260px; z-index: 2; opacity: 0.9; }
.hero__screenshot--3 { width: 320px; height: 200px; top: 360px; right: 40px; z-index: 1; opacity: 0.8; }

.hero__badge {
    position: absolute;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
    z-index: 10;
    white-space: nowrap;
}
.hero__badge span { color: #0cce6b; }
.hero__badge--1 { top: -10px; right: 320px; }
.hero__badge--2 { top: 200px; right: -10px; }

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__visual {
        position: relative;
        height: 260px;
        width: 90%;
        max-width: 380px;
        margin: var(--space-md) auto 0;
    }
    .hero__visual::before { display: none; }
    .hero__screenshot {
        position: absolute !important;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--color-border);
    }
    .hero__screenshot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
    .hero__screenshot--1 { width: 260px; height: 165px; top: 0; right: 0; z-index: 3; opacity: 1; }
    .hero__screenshot--2 { width: 220px; height: 140px; top: 70px; left: 0; z-index: 2; opacity: 0.92; display: block; }
    .hero__screenshot--3 { width: 200px; height: 125px; top: 130px; right: 10px; z-index: 1; opacity: 0.84; display: block; }
    .hero__badge { display: none; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__stats { flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
    .hero { padding: clamp(80px, 10vw, 120px) 0 var(--space-lg); min-height: auto; }
}

/* === SECTION 2: SOCIAL PROOF === */
.proof {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.proof__label {
    text-align: center;
    font-size: var(--text-overline);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.proof__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
}

.proof__logo {
    height: 28px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.proof__logo:hover { opacity: 0.8; filter: grayscale(0%); }

/* === SECTION 3: PORTFOLIO === */
.portfolio {
    padding: var(--space-section) 0;
    background: var(--color-bg-white);
}

.portfolio__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.portfolio__card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.portfolio__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.portfolio__image { display: block; overflow: hidden; height: 220px; }

.portfolio__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s var(--ease-out);
}
.portfolio__card:hover .portfolio__image img { transform: scale(1.02); }

.portfolio__info { padding: var(--space-md); }

.portfolio__head {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.portfolio__logo { width: 24px; height: 24px; border-radius: 4px; }
.portfolio__name { font-size: var(--text-h3); flex: 1; }

.portfolio__score {
    font-family: var(--font-heading);
    font-size: var(--text-caption);
    font-weight: 700;
    color: #0cce6b;
    background: rgba(12, 206, 107, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.portfolio__desc {
    color: var(--color-text-secondary);
    font-size: var(--text-body-sm);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.portfolio__meta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.portfolio__tag {
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

.portfolio__price {
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-text-primary);
}

.portfolio__more { margin-top: var(--space-lg); }

@media (max-width: 768px) {
    .portfolio__bento { grid-template-columns: 1fr; }
}

/* === SECTION 4: PROCESS === */
.process {
    padding: var(--space-section) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.process__strip {
    display: flex;
    align-items: flex-start;
}

.process__step {
    flex: 1;
    display: flex;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
}

.process__num {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: 800;
    color: var(--color-border-hover);
    letter-spacing: -0.04em;
    line-height: 1;
    flex-shrink: 0;
}

.process__text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.process__text p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.process__divider {
    width: 1px;
    height: 80px;
    background: var(--color-border);
    flex-shrink: 0;
    align-self: center;
}

@media (max-width: 768px) {
    .process__strip { flex-direction: column; gap: var(--space-md); }
    .process__divider { width: 40px; height: 1px; margin-left: 60px; }
}

/* === SECTION 5: PRICING === */
.pricing {
    padding: var(--space-section) 0;
    background: var(--color-bg);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-white);
}

.pricing__card {
    padding: var(--space-lg) var(--space-md);
    position: relative;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.pricing__card:last-child { border-right: none; }

.pricing__card--popular {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.pricing__card--popular h3,
.pricing__card--popular .pricing__amount,
.pricing__card--popular .pricing__currency { color: var(--color-text-inverse); }

.pricing__card--popular .pricing__desc,
.pricing__card--popular .pricing__label,
.pricing__card--popular .pricing__delivery,
.pricing__card--popular .pricing__features li { color: rgba(255, 255, 255, 0.7); }

.pricing__badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: var(--text-overline);
    font-weight: 700;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing__header { margin-bottom: var(--space-md); }
.pricing__header h3 { font-size: var(--text-h3); margin-bottom: var(--space-sm); }

.pricing__amount {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing__currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
}

.pricing__label {
    display: block;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    margin-top: 4px;
}

.pricing__delivery {
    display: block;
    font-size: var(--text-caption);
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-top: 8px;
}

.pricing__desc {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.pricing__features {
    flex: 1;
    margin-bottom: var(--space-md);
}

.pricing__features li {
    padding: 10px 0;
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    padding-left: 24px;
    position: relative;
}

.pricing__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L6.5 10.293l6.646-6.647a.5.5 0 01.708 0z' fill='%23D4A373'/%3E%3C/svg%3E") no-repeat center;
}

.pricing__card--popular .pricing__features li { border-bottom-color: rgba(255, 255, 255, 0.1); }
.pricing__card--popular .pricing__features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L6.5 10.293l6.646-6.647a.5.5 0 01.708 0z' fill='%23D4A373'/%3E%3C/svg%3E");
}

.pricing__card .btn { width: 100%; margin-top: auto; }

.pricing__guarantee {
    text-align: center;
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-lg);
}

/* Pricing addons */
.pricing__addons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.pricing__addon-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.pricing__addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.pricing__addon-header h3 {
    font-size: var(--text-h3);
    letter-spacing: -0.02em;
}

.pricing__addon-price {
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing__addon-price .pricing__amount {
    font-size: clamp(28px, 3vw, 36px);
}

.pricing__addon-desc {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.pricing__addon-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing__addon-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.pricing__addon-card .pricing__features { margin-bottom: var(--space-sm); }
.pricing__addon-card .btn { width: 100%; margin-top: auto; }

/* Pricing extras */
.pricing__extras {
    margin-top: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__extra {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    padding: 8px 0;
}

.pricing__extra-name {
    font-size: var(--text-body-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.pricing__extra-dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-border-hover);
    min-width: 20px;
    margin-bottom: 4px;
}

.pricing__extra-price {
    font-family: var(--font-heading);
    font-size: var(--text-body-sm);
    font-weight: 700;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.pricing__extra-desc {
    display: block;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    margin-top: -4px;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .pricing__addons { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .pricing__grid { grid-template-columns: 1fr; }
    .pricing__card {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    .pricing__card:last-child { border-bottom: none; }
}

/* === SECTION 6: TESTIMONIALS === */
.testimonials {
    padding: var(--space-section) 0;
    background: var(--color-bg);
}

.testimonials__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonials__track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}
.testimonials__track::-webkit-scrollbar { display: none; }

.testimonials__card {
    flex: 0 0 calc(33.333% - 22px);
    scroll-snap-align: start;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.testimonials__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonials__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}
.testimonials__arrow:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}
.testimonials__arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-text-primary);
    stroke-width: 2;
    fill: none;
}

.testimonials__card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.testimonials__logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.testimonials__name {
    font-family: var(--font-heading);
    font-size: var(--text-body-sm);
    font-weight: 700;
    color: var(--color-text-primary);
}

.testimonials__stars {
    color: var(--color-accent-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.testimonials__text {
    font-size: var(--text-body-sm);
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-style: normal;
}

@media (max-width: 768px) {
    .testimonials__card { flex: 0 0 85%; }
    .testimonials__arrow { display: none; }
}

/* === SECTION 7: FAQ === */
.faq {
    padding: var(--space-section) 0;
    background: var(--color-bg);
}

.faq__list { max-width: var(--container-narrow); margin: 0 auto; }

.faq__item { border-bottom: 1px solid var(--color-border); }

.faq__question {
    width: 100%;
    padding: var(--space-md) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    gap: var(--space-sm);
    transition: color 0.2s ease;
}
.faq__question:hover { color: var(--color-accent-gold); }

.faq__icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-muted);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}

.faq__item.active .faq__icon { transform: rotate(180deg); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.active .faq__answer {
    padding-bottom: var(--space-md);
}

.faq__answer p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq__answer img { display: inline; height: 1.2em; width: auto; vertical-align: middle; }

/* === SECTION 8: CTA + CONTACT + FOOTER === */
.cta-footer {
    padding: var(--space-section) 0 var(--space-lg);
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

.cta-footer__hero {
    text-align: center;
    margin-bottom: clamp(36px, 4vw, 56px);
}
.cta-footer__hero h2 {
    font-size: var(--text-h2);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}
.cta-footer__hero p {
    font-size: var(--text-body-lg);
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.cta-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

/* Form on dark */
.cta-footer__form label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--text-caption);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form__field { margin-bottom: var(--space-sm); }

.cta-footer__form input,
.cta-footer__form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-inverse);
    font-family: inherit;
    font-size: var(--text-body-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cta-footer__form input::placeholder,
.cta-footer__form textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

.cta-footer__form input:focus,
.cta-footer__form textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.cta-footer__form textarea { min-height: 100px; resize: vertical; }

.form__note {
    text-align: center;
    margin-top: var(--space-sm);
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.35);
}

/* Right side: contact info */
.cta-footer__info {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}
.cta-footer__info h3 {
    font-size: 18px;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}
.cta-footer__info p {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}
.cta-footer__info a { color: var(--color-accent-gold); }
.cta-footer__info a:hover { color: #e8b88a; }

.cta-footer__about {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-footer__members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.cta-footer__member { margin-bottom: 0; }
.cta-footer__member strong {
    display: block;
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.8);
}
.cta-footer__member span {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.4);
}

/* Footer bottom */
/* Footer rich grid */
.cta-footer__footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-top: clamp(40px, 5vw, 80px);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: var(--space-lg);
}

.cta-footer__footer-brand p {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.cta-footer__footer-links h4,
.cta-footer__footer-contact h4 {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.cta-footer__footer-links a {
    display: block;
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 0;
    transition: color 0.2s ease;
}
.cta-footer__footer-links a:hover { color: var(--color-accent-gold); }

.cta-footer__footer-contact p {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}
.cta-footer__footer-contact a { color: var(--color-accent-gold); }

.cta-footer__logo {
    height: 30px;
    width: auto;
    filter: brightness(10);
}

.cta-footer__partner-badge {
    width: 110px;
    height: auto;
    border-radius: var(--radius-sm);
    display: block;
    flex-shrink: 0;
    margin-top: 4px;
}

.cta-footer__bottom {
    padding-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-footer__bottom p {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.3);
}
.cta-footer__bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
}

/* Form type cards */
.form__label-top {
    display: block;
    margin-bottom: 6px;
    font-size: var(--text-caption);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__type-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.form__type-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form__type-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}
.form__type-card.active {
    border-color: var(--color-accent-gold);
    background: rgba(212, 163, 115, 0.1);
}

.form__type-card-icon { width: 28px; height: 28px; margin: 0 auto 6px; display: block; }
.form__type-card-icon svg { width: 100%; height: 100%; }
.form__type-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-caption);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}
.form__type-card-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-top: 2px;
}

/* Form toggles */
.form__toggles {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.cta-footer__form .form__toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.6);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    font-weight: 400;
}
.form__toggle input { display: none; }

.form__toggle-track {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.form__toggle-track::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.form__toggle input:checked + .form__toggle-track { background: var(--color-accent-gold); }
.form__toggle input:checked + .form__toggle-track::after {
    transform: translateX(16px);
    background: white;
}

/* Form 3-column row */
.form__row--3 { grid-template-columns: repeat(3, 1fr); }

/* Budget select */
.cta-footer__form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-inverse);
    font-family: inherit;
    font-size: var(--text-body-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}
.cta-footer__form select:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background-color: rgba(255, 255, 255, 0.1);
}
.cta-footer__form select option {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

/* Member email */
.cta-footer__member a {
    font-size: var(--text-caption);
    color: var(--color-accent-gold);
    display: block;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .cta-footer__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .form__row--3 { grid-template-columns: 1fr; }
    .form__type-cards { grid-template-columns: 1fr 1fr; }
    .form__toggles { gap: var(--space-sm); }
    .cta-footer__form .form__toggle { font-size: var(--text-caption); gap: 6px; flex: 0 0 auto; }
    .cta-footer__footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .cta-footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 12px var(--container-padding);
    z-index: 1000;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
}

.sticky-cta a {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-btn);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
}
.sticky-cta .btn-call {
    background: var(--color-accent-gold);
    color: var(--color-text-primary);
}
.sticky-cta .btn-sms {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* === SCROLL TOP BUTTON === */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; stroke: var(--color-text-primary); stroke-width: 2; fill: none; }

/* === SCROLL REVEAL (minimal) === */
.section-head,
.portfolio__card,
.pricing__grid,
.testimonials__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   SUB-PAGE SHARED STYLES
   ============================================ */

/* Sub-page footer (dark, like CTA section but without form) */
.subpage-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 0;
}
.subpage-footer .cta-footer__footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
}
.subpage-footer .cta-footer__logo {
    height: 30px;
    width: auto;
    margin-bottom: var(--space-sm);
    filter: brightness(10);
}
.subpage-footer .cta-footer__footer-brand p {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}
.subpage-footer .cta-footer__footer-links,
.subpage-footer .cta-footer__footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.subpage-footer .cta-footer__footer-links h4,
.subpage-footer .cta-footer__footer-contact h4 {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}
.subpage-footer .cta-footer__footer-links a,
.subpage-footer .cta-footer__footer-contact a {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}
.subpage-footer .cta-footer__footer-links a:hover,
.subpage-footer .cta-footer__footer-contact a:hover {
    color: var(--color-accent-gold);
}
.subpage-footer .cta-footer__footer-contact p {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.5);
}
.subpage-footer .cta-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.3);
}
.subpage-footer .cta-footer__bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}
.subpage-footer .cta-footer__bottom a:hover {
    color: var(--color-accent-gold);
}

@media (max-width: 768px) {
    .subpage-footer .cta-footer__footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Sub-page hero */
.subpage-hero {
    padding: clamp(80px, 9vw, 130px) 0 var(--space-md);
}
.subpage-hero__title {
    font-size: var(--text-h2);
    margin-bottom: var(--space-sm);
}
.subpage-hero__subtitle {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
}

/* Content body for text pages (privacy policy, etc.) */
.content-body {
    padding: 0 0 var(--space-section);
    max-width: 800px;
    margin: 0 auto;
}
.content-body h2 {
    font-size: var(--text-h3);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-accent-gold);
}
.content-body p {
    font-size: var(--text-body);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}
.content-body ul {
    margin: var(--space-sm) 0;
    padding-left: 24px;
    list-style: disc;
}
.content-body li {
    margin-bottom: var(--space-xs);
    font-size: var(--text-body);
    color: var(--color-text-primary);
    line-height: 1.7;
}
.content-body .highlight-box {
    background: var(--color-bg-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent-gold);
    margin: var(--space-md) 0;
}
.content-body a {
    color: var(--color-accent-gold);
    text-decoration: underline;
}
.content-body a:hover {
    color: #b07e5a;
}

/* 404 error page */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-section) 0;
    text-align: center;
}
.error-page__inner {
    max-width: 500px;
}
.error-page__code {
    font-size: clamp(100px, 15vw, 180px);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text-primary);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: -40px;
}
.error-page__title {
    font-size: var(--text-h2);
    margin-bottom: var(--space-sm);
}
.error-page__text {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Thank-you page */
.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(100px, 12vw, 160px) var(--container-padding) var(--space-section);
}
.thankyou-card {
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: var(--color-bg-white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}
.thankyou-card__icon {
    font-size: 64px;
    margin-bottom: var(--space-md);
    animation: popIn 0.6s ease;
}
.thankyou-card__title {
    font-size: var(--text-h2);
    margin-bottom: var(--space-sm);
}
.thankyou-card__text {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}
.thankyou-card__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    text-align: left;
    margin: var(--space-lg) 0;
}
.thankyou-card__step {
    background: var(--color-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}
.thankyou-card__step h3 {
    font-size: var(--text-body-sm);
    color: var(--color-accent-gold);
    margin-bottom: var(--space-xs);
}
.thankyou-card__step p {
    font-size: var(--text-caption);
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.thankyou-card__contact {
    background: var(--color-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border-left: 4px solid var(--color-accent-gold);
    text-align: left;
}
.thankyou-card__contact p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}
.thankyou-card__contact a {
    color: var(--color-accent-gold);
    font-weight: 600;
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .thankyou-card__steps { grid-template-columns: 1fr; }
    .thankyou-card { padding: var(--space-lg) var(--space-md); }
}

/* Domain pages */
.domain-hero {
    padding: clamp(100px, 12vw, 160px) 0 var(--space-lg);
    text-align: center;
}
.domain-hero__title {
    font-size: var(--text-h1);
    margin-bottom: var(--space-sm);
}
.domain-hero__subtitle {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    padding-bottom: var(--space-section);
}
.domain-card {
    background: var(--color-bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.domain-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.domain-card__name {
    font-size: var(--text-h3);
    margin-bottom: var(--space-xs);
}
.domain-card__desc {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}
.domain-card__price {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-md);
}
.domain-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}
.domain-card__features li {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
}
.domain-card__features li:last-child { border-bottom: none; }

/* Domain detail page */
.domain-detail {
    padding: 0 0 var(--space-section);
    max-width: 700px;
    margin: 0 auto;
}
.domain-detail__price {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--color-accent-gold);
    margin: var(--space-md) 0;
}
.domain-detail__info {
    background: var(--color-bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
}
.domain-detail__info h2 {
    font-size: var(--text-h3);
    margin-bottom: var(--space-sm);
}
.domain-detail__info p {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}
.domain-detail__cta {
    background: var(--color-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent-gold);
    text-align: center;
}
.domain-detail__cta p {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}
.domain-detail__cta a {
    color: var(--color-accent-gold);
    font-weight: 700;
}

/* ==========================================================================
   ABOUT / MEIST SECTION
   ========================================================================== */
.about {
    padding: var(--space-section) 0;
    background: var(--color-bg-white);
}
.about__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: clamp(48px, 6vw, 80px);
}
.about__value {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}
.about__value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    background: rgba(212, 163, 115, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-gold);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about__value h3 {
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.about__value p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.about__team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}
.about__member {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease;
}
.about__member:hover {
    box-shadow: var(--shadow-md);
}
.about__member-initial {
    width: 56px;
    height: 56px;
    background: var(--color-accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}
.about__member-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-body);
    margin-bottom: 2px;
}
.about__member-role {
    display: block;
    font-size: var(--text-caption);
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.about__member-info p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about__values { grid-template-columns: 1fr; }
    .about__team { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG PREVIEW (homepage)
   ========================================================================== */
.blog-preview {
    padding: var(--space-section) 0;
    background: var(--color-bg);
}
.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.blog-preview__card {
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3vw, 32px);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.blog-preview__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--color-accent-gold);
}
.blog-preview__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 12px;
}
.blog-preview__category {
    font-size: var(--text-overline);
    font-weight: 700;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(212, 163, 115, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
}
.blog-preview__time {
    font-size: var(--text-caption);
    color: var(--color-text-muted);
}
.blog-preview__title {
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-preview__excerpt {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.65;
    flex: 1;
}
.blog-preview__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: var(--text-body-sm);
    color: var(--color-accent-gold);
    margin-top: var(--space-sm);
    transition: gap 0.2s ease;
}
.blog-preview__link span {
    transition: transform 0.2s ease;
}
.blog-preview__card:hover .blog-preview__link {
    gap: 10px;
}
.blog-preview__card:hover .blog-preview__link span {
    transform: translateX(3px);
}
.blog-preview__more {
    margin-top: var(--space-lg);
}
@media (max-width: 768px) {
    .blog-preview__grid { grid-template-columns: 1fr; gap: var(--space-sm); }
}

/* ==========================================================================
   BLOG LISTING PAGE
   ========================================================================== */
.blog-listing {
    padding: var(--space-md) 0 var(--space-section);
}
.blog-listing .container {
    max-width: var(--container-wide);
}
.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
@media (max-width: 960px) {
    .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-listing__grid { grid-template-columns: 1fr; gap: var(--space-sm); }
    .blog-preview__card { padding: var(--space-sm); }
    .blog-preview__title { font-size: 16px; margin-bottom: 6px; }
    .blog-preview__excerpt { font-size: 14px; line-height: 1.5; }
    .blog-preview__meta { margin-bottom: 8px; }
    .blog-preview__link { margin-top: 8px; }
}

/* ==========================================================================
   BLOG POST — HERO HEADER
   ========================================================================== */
.blog-post-hero {
    background: var(--color-bg-dark);
    padding: clamp(100px, 12vw, 150px) 0 clamp(40px, 5vw, 64px);
    color: var(--color-text-inverse);
    overflow: hidden;
}
.blog-post-hero__breadcrumb {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.blog-post-hero__breadcrumb a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.blog-post-hero__breadcrumb a:hover { color: var(--color-accent-gold); }
.blog-post-hero__category {
    display: inline-block;
    font-size: var(--text-overline);
    font-weight: 700;
    color: var(--color-bg-dark);
    background: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}
.blog-post-hero__title {
    font-size: clamp(26px, 3.5vw, 44px);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    max-width: 720px;
    color: var(--color-text-inverse);
}
.blog-post-hero__meta {
    display: flex;
    gap: var(--space-sm);
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   BLOG POST — BODY
   ========================================================================== */
.blog-post {
    padding: var(--space-lg) 0 var(--space-section);
    overflow-x: hidden;
}
.blog-post__toc {
    display: block;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(16px, 3vw, 28px);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.blog-post__toc-title {
    font-family: var(--font-heading);
    font-size: var(--text-body-sm);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-post__toc-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 16px;
    background: var(--color-accent-gold);
    border-radius: 2px;
    flex-shrink: 0;
}
.blog-post__toc ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: toc;
}
.blog-post__toc li {
    margin-bottom: 0;
    font-size: var(--text-body-sm);
    counter-increment: toc;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}
.blog-post__toc li:last-child { border-bottom: none; }
.blog-post__toc li::before {
    content: counter(toc) ".";
    position: absolute;
    left: 0;
    color: var(--color-accent-gold);
    font-weight: 600;
    font-size: 13px;
    width: 22px;
}
.blog-post__toc a {
    color: var(--color-text-secondary);
    transition: color 0.2s;
}
.blog-post__toc a:hover {
    color: var(--color-accent-gold);
}
@media (max-width: 600px) {
    .blog-post__toc { padding: 14px; }
    .blog-post__toc li { font-size: 14px; padding: 7px 0 7px 24px; }
    .blog-post__toc li::before { font-size: 12px; width: 18px; }
}

/* Post body */
.blog-post__body h2 {
    font-size: var(--text-h3);
    margin-top: clamp(40px, 5vw, 56px);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-accent-gold);
}
.blog-post__body h3 {
    font-size: 20px;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}
.blog-post__body p {
    font-size: var(--text-body);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}
.blog-post__body ul,
.blog-post__body ol {
    margin: var(--space-sm) 0;
    padding-left: 24px;
}
.blog-post__body ul { list-style: disc; }
.blog-post__body ol { list-style: decimal; }
.blog-post__body li {
    margin-bottom: var(--space-xs);
    font-size: var(--text-body);
    line-height: 1.8;
}
.blog-post__body a {
    color: var(--color-accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(212, 163, 115, 0.4);
    transition: text-decoration-color 0.2s;
}
.blog-post__body a:hover {
    color: var(--color-accent-gold-hover);
    text-decoration-color: var(--color-accent-gold-hover);
}
.blog-post__body blockquote {
    border-left: 4px solid var(--color-accent-gold);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
    background: var(--color-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-text-secondary);
}
.blog-post__body .highlight-box {
    background: rgba(212, 163, 115, 0.06);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent-gold);
    margin: var(--space-md) 0;
}
.blog-post__body .highlight-box p { margin-bottom: var(--space-xs); }
.blog-post__body .highlight-box p:last-child { margin-bottom: 0; }
.blog-post__table-wrap {
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.blog-post__body table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-body-sm);
}
@media (max-width: 768px) {
    .blog-post__table-wrap { border: none; }
    .blog-post__body table,
    .blog-post__body thead,
    .blog-post__body tbody,
    .blog-post__body tr,
    .blog-post__body th,
    .blog-post__body td { display: block; }
    .blog-post__body thead { display: none; }
    .blog-post__body tr {
        background: var(--color-bg-white);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        margin-bottom: var(--space-sm);
        padding: var(--space-sm);
    }
    .blog-post__body td {
        padding: 6px 0;
        border-bottom: none;
        font-size: 14px;
        line-height: 1.5;
    }
    .blog-post__body td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-accent-gold);
        margin-bottom: 2px;
    }
    .blog-post__body tr:hover td { background: transparent; }
}
.blog-post__body th {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.blog-post__body th:first-child { border-radius: var(--radius-md) 0 0 0; }
.blog-post__body th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.blog-post__body td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--color-border);
}
.blog-post__body tr:hover td { background: var(--color-bg); }

/* CTA at bottom of post */
.blog-post__cta {
    margin-top: clamp(48px, 6vw, 80px);
    padding: clamp(32px, 4vw, 48px);
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}
.blog-post__cta h3 {
    font-size: var(--text-h3);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-xs);
}
.blog-post__cta p {
    font-size: var(--text-body);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

/* Related posts */
.blog-related {
    padding: 0 0 var(--space-section);
}
.blog-related__title {
    font-size: var(--text-h3);
    margin-bottom: var(--space-md);
}
.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
@media (max-width: 768px) {
    .blog-related__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MEIST PAGE (meist.php)
   ========================================================================== */

/* Hero */
.meist-hero {
    background: var(--color-bg-dark);
    padding: clamp(90px, 10vw, 120px) 0 clamp(36px, 4vw, 48px);
    color: var(--color-text-inverse);
}
.meist-hero__label {
    display: inline-block;
    font-size: var(--text-overline);
    font-weight: 700;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}
.meist-hero__title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
    color: var(--color-text-inverse);
    max-width: 650px;
}
.meist-hero__text {
    font-size: var(--text-body-lg);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}
.meist-hero__stats {
    display: flex;
    gap: clamp(32px, 4vw, 64px);
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.meist-hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--color-accent-gold);
    line-height: 1.1;
}
.meist-hero__stat-label {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.45);
}

/* Section title */
.meist-section__title {
    font-size: var(--text-h3);
    text-align: center;
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

/* Values */
.meist-values {
    padding: clamp(40px, 5vw, 64px) 0;
}
.meist-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.meist-values__card {
    text-align: center;
    padding: clamp(24px, 3vw, 40px);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.meist-values__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.meist-values__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.meist-values__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.meist-values__card h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}
.meist-values__card p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Process */
.meist-process {
    padding: clamp(40px, 5vw, 64px) 0;
    background: var(--color-bg);
}
.meist-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.meist-process__step {
    position: relative;
    padding: var(--space-sm);
}
.meist-process__number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 800;
    color: rgba(212, 163, 115, 0.15);
    line-height: 1;
    margin-bottom: var(--space-xs);
}
.meist-process__step h3 {
    font-size: 17px;
    margin-bottom: var(--space-xs);
}
.meist-process__step p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Team */
.meist-team {
    padding: clamp(40px, 5vw, 64px) 0;
}
.meist-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}
.meist-team__card {
    text-align: center;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease;
}
.meist-team__card:hover {
    box-shadow: var(--shadow-lg);
}
.meist-team__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    color: var(--color-accent-gold);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
}
.meist-team__name {
    font-size: 20px;
    margin-bottom: 4px;
}
.meist-team__role {
    display: block;
    font-size: var(--text-body-sm);
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.meist-team__bio {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* CTA */
.meist-cta {
    padding: 0 0 clamp(40px, 5vw, 64px);
}
.meist-cta__box {
    padding: clamp(40px, 5vw, 64px);
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}
.meist-cta__box h2 {
    font-size: var(--text-h3);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-xs);
}
.meist-cta__box p {
    font-size: var(--text-body);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .meist-values__grid { grid-template-columns: 1fr; }
    .meist-process__grid { grid-template-columns: repeat(2, 1fr); }
    .meist-team__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .meist-process__grid { grid-template-columns: 1fr; }
}
