/* style.css - Premium Luxury Theme for Urbantasche (White, Cream & Scandinavian Gold Theme) */

/* Global Typography & Core Reset Class */
.ut-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ut-page {
    background-color: #faf8f4; /* Warm Scandinavian Cream background */
    color: #212121; /* Charcoal black text */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Classes */
.ut-font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.ut-font-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ut-heading-1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ut-heading-2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.ut-heading-3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.ut-text {
    font-size: 1.05rem;
    color: #545454; /* Muted slate charcoal */
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.ut-text-strong {
    font-weight: 700;
    color: #1c1c1c;
}

.ut-text-small {
    font-size: 0.9rem;
    color: #777777;
}

.ut-link {
    color: #1c1c1c;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.ut-link:hover {
    color: #cba227; /* Scandinavian Gold */
    border-bottom-color: #cba227;
}

.ut-link-underline {
    text-decoration: underline;
}

/* Layout Classes */
.ut-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.ut-container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ut-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.ut-section-alt {
    background-color: #ffffff; /* Contrast Pure White sections */
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.ut-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ut-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ut-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.ut-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}


/* Interactive Elements & Buttons */
.ut-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-sizing: border-box;
    white-space: normal; /* Safe wrapping for long button labels on mobile */
    line-height: 1.3;
}

.ut-btn-primary {
    background: linear-gradient(135deg, #1c1c1c 0%, #383838 100%);
    color: #faf8f4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ut-btn-primary:hover {
    background: linear-gradient(135deg, #cba227 0%, #a68523 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.ut-btn-full {
    width: 100%;
}

.ut-btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.75rem;
}

.ut-btn-large-cta {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.ut-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.ut-img-zoom:hover {
    transform: scale(1.03);
}

/* Badges & Accents */
.ut-badge {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #a68523;
    background: rgba(201, 162, 39, 0.1);
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

/* Header & Disclosure Notice */
.ut-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ut-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #1c1c1c;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.ut-logo:hover {
    color: #cba227;
}

.ut-logo-highlight {
    color: #cba227;
}

.ut-disclosure {
    background-color: #1c1c1c;
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.ut-disclosure-text {
    font-size: 0.825rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.ut-hero {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

/* Premium Cards & Containers */
.ut-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(201, 162, 39, 0.12);
}

.ut-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.25);
}

/* Lists and Guides */
.ut-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.ut-list-item {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.85rem;
    color: #545454;
    font-size: 1.05rem;
}

.ut-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cba227;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
}

/* Pros and Cons Panels */
.ut-pros-cons-box {
    background-color: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.01);
}

.ut-pros-title {
    color: #2e7d32;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.ut-cons-title {
    color: #c62828;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.ut-list-pro {
    list-style-type: none;
    padding-left: 0;
}

.ut-list-item-pro {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #545454;
}

.ut-list-item-pro::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.15rem;
}

.ut-list-con {
    list-style-type: none;
    padding-left: 0;
}

.ut-list-item-con {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #777777;
}

.ut-list-item-con::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
    font-size: 1.15rem;
}

/* Pricing Widgets */
.ut-price-box {
    background: #ffffff;
    border: 2px solid #1c1c1c;
    border-radius: 20px;
    padding: 1.75rem 2.5rem;
    display: inline-block;
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.05);
    transition: all 0.3s ease;
}

.ut-price-box:hover {
    border-color: #cba227;
}

.ut-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.ut-price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-right: 2px;
}

.ut-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1c1c1c;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ut-price-decimal {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1c1c1c;
}

.ut-price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.ut-price-original {
    font-size: 1.05rem;
    color: #999999;
    text-decoration: line-through;
}

.ut-price-discount {
    background-color: #c62828;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

.ut-price-tax {
    font-size: 0.85rem;
    color: #777777;
    text-align: center;
}

/* Comparison Tables */
.ut-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.12);
}

.ut-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.ut-th, .ut-td {
    padding: 1.5rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #fcfbfa;
}

.ut-th {
    background-color: #faf8f4;
    font-weight: 700;
    color: #1c1c1c;
    font-size: 1rem;
    border-bottom: 2px solid rgba(201, 162, 39, 0.15);
}

.ut-td {
    color: #545454;
    font-size: 1.05rem;
}

/* Accordeon FAQs styling */
.ut-faq-accordion {
    margin-top: 3.5rem;
}

.ut-faq-item {
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding: 1.5rem 0;
}

.ut-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
    cursor: pointer;
    transition: color 0.25s ease;
}

.ut-faq-trigger:hover {
    color: #cba227;
}

.ut-faq-icon-arrow {
    font-size: 1.1rem;
    color: #cba227;
    transition: transform 0.3s ease;
}

.ut-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
    padding-top: 0;
}

.ut-faq-content-active {
    max-height: 500px;
    padding-top: 1rem;
}

.ut-faq-text {
    font-size: 1rem;
    color: #545454;
    line-height: 1.75;
    margin: 0;
}

/* Preloader Overlay */
.ut-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #faf8f4;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ut-preloader.ut-hidden {
    opacity: 0;
    visibility: hidden;
}

.ut-loader {
    border: 3px solid #e8e6e0;
    border-top: 3px solid #cba227;
    border-bottom: 3px solid #cba227;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: ut-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 1.5rem;
}

.ut-preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1c1c1c;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes ut-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Box Drawer */
.ut-cookie-box {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 0;
    box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.3);
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.ut-cookie-box.active {
    bottom: 0;
}

.ut-cookie-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ut-cookie-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.ut-cookie-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.ut-cookie-btn-accept {
    background-color: #cba227;
    color: #ffffff;
}

.ut-cookie-btn-accept:hover {
    background-color: #a68523;
}

.ut-cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #444444;
    color: #aaaaaa;
}

.ut-cookie-btn-decline:hover {
    border-color: #666666;
    color: #ffffff;
}

/* Mobile Hamburger Menu */
.ut-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 200;
    position: relative;
}

.ut-hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #1c1c1c;
    border-radius: 3px;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ut-hamburger.active .ut-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.ut-hamburger.active .ut-hamburger-line:nth-child(2) {
    opacity: 0;
}

.ut-hamburger.active .ut-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.ut-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Modern premium flex spacing */
}

.ut-nav-desktop .ut-link {
    color: #545454;
    font-weight: 600;
    margin-left: 0; /* Replaced rigid margins with uniform gap spacing */
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem; /* More elegant Scandinavian type scale */
    letter-spacing: 0.05em;
}

.ut-nav-desktop .ut-link:hover {
    color: #cba227;
}

.ut-nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ut-nav-mobile-overlay.active {
    display: block;
    opacity: 1;
}

.ut-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: #faf8f4;
    z-index: 160;
    padding: 6rem 2.5rem 2.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(201, 162, 39, 0.15);
}

.ut-nav-mobile.active {
    right: 0;
}

.ut-nav-mobile-link {
    display: block;
    padding: 1.35rem 0;
    color: #212121;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ut-nav-mobile-link:hover {
    color: #cba227;
    padding-left: 0.75rem;
}

/* Page body locks during active navigation */
.ut-no-scroll {
    overflow: hidden;
}

/* Article layouts and figures */
.ut-article-body {
    margin-top: 2.5rem;
}

.ut-article-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #545454;
    margin-bottom: 1.75rem;
}

.ut-figure {
    margin: 2.5rem 0;
    text-align: center;
}

.ut-figcaption {
    font-size: 0.9rem;
    color: #777777;
    margin-top: 0.75rem;
}

/* Form Elements */
.ut-form-group {
    margin-bottom: 1.5rem;
}

.ut-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1c1c1c;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ut-form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e8e6e0;
    background-color: #ffffff;
    color: #212121;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.ut-form-control:focus {
    outline: none;
    border-color: #cba227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

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

/* Footer layout */
.ut-footer {
    background-color: #1c1c1c;
    color: #aaaaaa;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    margin-top: 0;
    border-top: 1px solid #333;
}

.ut-footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.ut-footer-subtitle {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.ut-footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #cba227;
}

.ut-footer-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #888888;
}

.ut-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ut-footer-link-item {
    margin-bottom: 0.85rem;
}

.ut-footer-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.ut-footer-link:hover {
    color: #cba227;
}

.ut-footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding-top: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
}

.ut-footer-bottom-text {
    font-size: 0.825rem;
    color: #666666;
    line-height: 1.6;
}

/* Premium Layout & Refactoring Utilities */
.ut-hero-img-shadow {
    box-shadow: 0 30px 60px rgba(201, 162, 39, 0.1);
}

.ut-grid-img-shadow {
    box-shadow: 0 15px 35px rgba(201, 162, 39, 0.05);
}

.ut-aside-price {
    color: #cba227;
    margin-bottom: 0;
}

.ut-aside-original-price {
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.ut-conclusion-text {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.ut-footer-link-underline {
    text-decoration: underline;
}

.ut-cookie-grid {
    align-items: center;
    gap: 2rem;
}

.ut-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ut-hero-btns .ut-btn {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 1.1rem 1.25rem !important;
    font-size: 1.05rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
}


.ut-cookie-link {
    color: #cba227;
}

.ut-header-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 50px;
}

.ut-detail-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.12);
}

@media (max-width: 768px) {
    .ut-detail-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ut-detail-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

.ut-detail-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(201, 162, 39, 0.08);
}

.ut-cta-box {
    background-color: #faf8f4;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

@media (max-width: 480px) {
    .ut-cta-box {
        padding: 1.5rem;
    }
}

.ut-cta-price {
    color: #cba227;
    margin-bottom: 0;
}

.ut-cta-original-price {
    text-decoration: line-through;
    margin-left: 0.8rem;
}

.ut-detail-conclusion-footer {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.ut-cta-conclusion-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.ut-card-contact-details {
    background-color: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.ut-contact-email-link {
    font-weight: 600;
    color: #a68523;
}

.ut-contact-footer-divider {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.ut-contact-impressum-link {
    color: #a68523;
    font-weight: 600;
}

.ut-legal-email-link {
    color: #a68523;
    font-weight: 600;
}

.ut-legal-dispute-link {
    color: #a68523;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1080px) {
    .ut-heading-1 {
        font-size: 2.5rem;
    }
    .ut-heading-2 {
        font-size: 1.95rem;
    }
    .ut-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    .ut-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ut-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .ut-hamburger {
        display: block;
    }
    .ut-nav-desktop {
        display: none;
    }
    .ut-nav-mobile {
        display: block;
    }
    .ut-hero {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        text-align: center;
    }
    .ut-hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
    .ut-hero-btns .ut-btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
        box-sizing: border-box;
        text-align: center;
    }
    .ut-btn-large, .ut-btn-large-cta {
        font-size: 1.15rem;
        padding: 1.1rem 2rem;
    }
}

/* Symmetrical CTA buttons & Header adjustments for intermediate viewports (laptops) */
@media (min-width: 1081px) and (max-width: 1200px) {
    .ut-nav-desktop {
        gap: 1rem;
    }
    .ut-nav-desktop .ut-link {
        font-size: 0.8rem;
    }
    .ut-header-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    .ut-hero-btns .ut-btn {
        min-width: 215px;
        max-width: 250px;
        padding: 1.1rem 0.75rem !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .ut-heading-1 {
        font-size: 2.15rem;
    }
    .ut-heading-2 {
        font-size: 1.65rem;
    }
    .ut-heading-3 {
        font-size: 1.25rem;
    }
    .ut-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .ut-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ut-card {
        padding: 2rem;
    }
    .ut-cookie-box {
        padding: 1.5rem 0;
    }
    .ut-cookie-btn-group {
        justify-content: flex-start;
        margin-top: 1.25rem;
    }
    .ut-pros-cons-box {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .ut-heading-1 {
        font-size: 1.85rem;
    }
    .ut-heading-2 {
        font-size: 1.45rem;
    }
    .ut-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .ut-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .ut-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    .ut-hero-btns {
        max-width: 100%;
        gap: 1rem;
    }
    .ut-btn-large, .ut-btn-large-cta {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }
    .ut-price-value {
        font-size: 2.75rem;
    }
    .ut-price-box {
        padding: 1.25rem 1.5rem;
        width: 100%;
    }
}
