/* =============================================
   WPM Theme - Pergole Alkon
   Vanilla CSS (converted from Tailwind)
   ============================================= */

/* --- Google Fonts loaded via <link> in header.php (non-blocking) --- */

/* --- CSS Variables (Design Tokens) --- */
:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #fafafa;
    --card-foreground: #1a1a1a;
    --primary: #262626;
    --primary-foreground: #ffffff;
    --secondary: #f5f5f5;
    --secondary-foreground: #1a1a1a;
    --muted: #f0f0f0;
    --muted-foreground: #737373;
    --accent: #e8e6e1;
    --accent-foreground: #1a1a1a;
    --destructive: #7f1d1d;
    --destructive-foreground: #ffffff;
    --border: #e5e5e5;
    --input: #f0f0f0;
    --ring: #262626;
    --radius: 0.25rem;
    --highlight-yellow: #ffd700;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

/* --- Layout Utilities --- */
.section-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .section-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* --- Grid System --- */
.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Typography Classes --- */
.hero-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    font-family: var(--font-serif);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

/* --- Highlight Underline --- */
.highlight-underline {
    position: relative;
    display: inline;
    background: linear-gradient(180deg, transparent 60%, hsl(48, 100%, 75%) 60%);
}

/* --- Feature Styles --- */
.feature-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* --- Form Card --- */
.form-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .form-card {
        padding: 2rem;
    }
}

.form-card .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-card .form-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-card .form-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* --- Input Field --- */
.input-field {
    width: 100%;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    color: var(--foreground);
    transition: all 0.2s ease;
    outline: none;
}

.input-field::placeholder {
    color: var(--muted-foreground);
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 38, 38, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

/* --- Photo Upload --- */
.upload-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.upload-label__icon {
    flex-shrink: 0;
}

.upload-label__optional {
    color: var(--muted-foreground);
    font-weight: 400;
}

.upload-dropzone {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    min-height: 5.5rem;
    overflow: hidden;
}

.upload-dropzone:hover {
    border-color: var(--muted-foreground);
}

.upload-dropzone--dragover {
    border-color: var(--primary);
    background-color: rgba(38, 38, 38, 0.03);
}

.upload-dropzone__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Placeholder (no file) */
.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    text-align: center;
    pointer-events: none;
}

.upload-placeholder__icon {
    width: 2rem;
    height: 2rem;
    color: var(--muted-foreground);
    margin-bottom: 0.375rem;
}

.upload-placeholder__text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.upload-placeholder__hint {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

/* Preview (file selected) */
.upload-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    position: relative;
}

.upload-preview img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.upload-preview__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.upload-preview__name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-preview__size {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

.upload-preview__remove {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: var(--background);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--muted-foreground);
    transition: all 0.15s ease;
    z-index: 3;
}

.upload-preview__remove:hover {
    background-color: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.w-full {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* CTA variant */
.btn-outline--light {
    border-color: var(--background);
    color: var(--background);
}

.btn-outline--light:hover {
    background-color: var(--background);
    color: var(--foreground);
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.5s ease-out 0.2s forwards;
    opacity: 0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--background);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.40));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 3rem;
    width: auto;
}

.hero-description {
    color: var(--muted-foreground);
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-description--italic {
    font-style: italic;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* =============================================
   WHY ALKON SECTION
   ============================================= */
.why-alkon-section {
    background-color: var(--background);
}

.why-alkon-section .section-header {
    margin-bottom: 3rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.benefit-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* =============================================
   INTELLIGENT SOLUTIONS SECTION
   ============================================= */
.intelligent-section {
    background-color: var(--background);
}

.intelligent-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intelligent-section img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* =============================================
   COMFORT & FUNCTIONALITY SECTION
   ============================================= */
.comfort-section {
    background-color: var(--secondary);
}

.comfort-section .features-and-image {
    margin-bottom: 4rem;
}

.comfort-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comfort-section img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Color Palette */
.color-palette {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .color-palette {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .color-palette {
        grid-template-columns: repeat(12, 1fr);
    }
}

.color-swatch {
    text-align: center;
}

.color-swatch__box {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.5rem;
    border-radius: var(--radius);
}

.color-swatch__box--bordered {
    border: 1px solid var(--border);
}

.color-swatch__name {
    font-size: 0.75rem;
    font-weight: 700;
}

.color-swatch__label {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
}

.color-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-style: italic;
}

/* =============================================
   TECHNICAL DATA SECTION
   ============================================= */
.technical-section {
    background-color: var(--background);
}

.technical-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.technical-section img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* =============================================
   GLASS SYSTEMS SECTION
   ============================================= */
.glass-section {
    background-color: var(--background);
}

.glass-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.glass-subsection {
    margin-bottom: 4rem;
}

.glass-subsection:last-child {
    margin-bottom: 0;
}

.glass-subsection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.glass-subsection p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.glass-subsection p strong {
    color: var(--foreground);
}

.glass-subsection img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.glass-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.glass-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.glass-list li span.bullet {
    color: var(--foreground);
}

.glass-list li strong {
    color: var(--foreground);
}

/* Reverse grid order for second glass subsection on desktop */
.glass-subsection--reverse .grid-2 {
    direction: ltr;
}

@media (min-width: 1024px) {
    .glass-subsection--reverse .glass-image-col {
        order: -1;
    }
}

/* =============================================
   SCREEN BLINDS SECTION (DARK)
   ============================================= */
.screen-section {
    background-color: hsl(0, 0%, 20%);
    color: #ffffff;
}

.screen-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.screen-section .section-title {
    color: #ffffff;
}

.screen-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.screen-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.screen-section .screen-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.screen-section .screen-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.screen-section .screen-list li .bullet {
    color: #ffffff;
}

.screen-section img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 3rem 0;
    background-color: var(--foreground);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
    }
}

.cta-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--background);
    text-align: center;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 1.5rem;
        text-align: left;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: 4rem 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand img {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact .contact-address {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact .contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--foreground);
    flex-shrink: 0;
}

.footer-contact .contact-item a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* =============================================
   FORM SUCCESS STATE
   ============================================= */
.form-success {
    text-align: center;
}

.form-success__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.form-consent {
    font-size: 0.75rem;
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* =============================================
   UTILITY: Align items center (for grids)
   ============================================= */
.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

/* =============================================
   GENERAL SECTION TEXT SPACING (within sections)
   ============================================= */
.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-page {
    background-color: var(--background);
}

/* --- Hero --- */
.thankyou-hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, #f8faf8 0%, var(--background) 100%);
}

.thankyou-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGreen 2s ease-in-out infinite;
}

.thankyou-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.25);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(22, 163, 74, 0);
    }
}

.thankyou-title {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .thankyou-title {
        font-size: 2.25rem;
    }
}

.thankyou-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .thankyou-subtitle {
        font-size: 1.125rem;
    }
}

/* Phone block */
.thankyou-phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thankyou-phone-label {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.thankyou-phone-number {
    font-size: 1.375rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.thankyou-phone-number:hover {
    color: #15803d;
}

.thankyou-phone-or {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* --- Reviews --- */
.thankyou-reviews {
    background-color: var(--background);
}

.thankyou-reviews .section-title {
    margin-bottom: 2.5rem;
}

.thankyou-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .thankyou-reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.review-card__stars {
    font-size: 1.125rem;
    color: #f59e0b;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.review-card__text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.review-card__name {
    font-weight: 600;
    color: var(--foreground);
}

.review-card__location {
    color: var(--muted-foreground);
}

.review-card__location::before {
    content: "•";
    margin-right: 0.5rem;
    color: var(--border);
}

/* CTA */
.thankyou-cta {
    padding-top: 1rem;
}

.thankyou-cta .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-page {
    background-color: var(--background);
}

/* Hero bar */
.privacy-hero {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--secondary);
}

.privacy-hero__title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .privacy-hero__title {
        font-size: 2rem;
    }
}

/* Body content */
.privacy-body {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-body h2 {
    font-size: 1.375rem;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.privacy-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-serif);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.privacy-body h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.privacy-body p {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.privacy-body ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.privacy-body ol ol {
    list-style: lower-alpha;
}

.privacy-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.privacy-body ul ul {
    list-style: circle;
}

.privacy-body li {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.privacy-body a {
    color: #16a34a;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.privacy-body a:hover {
    color: #15803d;
}

/* Cookie table */
.privacy-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0 2rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.privacy-table th {
    background-color: var(--secondary);
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.privacy-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.6;
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-table code {
    font-size: 0.75rem;
    background-color: var(--secondary);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    white-space: nowrap;
}