/* ============================================
   OASIS SMOKE SHOP — Editorial Style
   Terracotta + Sand Palette
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta: #C45A3C;
    --terracotta-dark: #A84830;
    --terracotta-light: #D4755A;
    --sand: #E8D5C0;
    --sand-light: #F2E8DC;
    --sand-lighter: #FAF5F0;
    --sand-dark: #C4A882;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --warm-gray: #6B6560;
    --warm-gray-light: #9B9590;
    --cream: #FDF8F3;
    --white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -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;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-headline em {
    font-style: italic;
    color: var(--terracotta);
}

.headline-accent {
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    margin-bottom: 2rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(196, 90, 60, 0.1);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
}

.nav-logo-icon {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.5rem;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--terracotta);
}

.mobile-menu-cta {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white) !important;
    background: var(--terracotta);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    margin-top: 1rem;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(196, 90, 60, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    font-weight: 800;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 600;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero-trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

.hero-visual {
    position: relative;
    padding-left: 3rem;
}

.hero-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(26, 26, 26, 0.12);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.15);
    border: 4px solid var(--cream);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(196, 90, 60, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 90, 60, 0.25);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 90, 60, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* --- Marquee --- */
.marquee {
    background: var(--charcoal);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sand);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    color: var(--terracotta) !important;
    font-size: 0.5rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
    padding: 8rem 0;
    background: var(--sand-lighter);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-col img:first-child {
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(26, 26, 26, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.15);
    border: 5px solid var(--sand-lighter);
    width: 65%;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    padding-right: 2rem;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--sand);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.about-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

/* --- Products --- */
.products {
    padding: 8rem 0;
    background: var(--cream);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header .headline-accent {
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
    transition: all 0.4s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.12);
}

.product-card--featured {
    grid-row: 1 / 3;
}

.product-card--featured .product-card-image {
    height: 60%;
}

.product-card-image {
    overflow: hidden;
    height: 250px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card-content {
    padding: 1.75rem;
}

.product-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.product-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 1.25rem;
}

.product-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--terracotta);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.3s var(--ease-out);
}

.product-card-link:hover {
    gap: 0.75rem;
}

.products-note {
    text-align: center;
    padding: 2rem;
    background: var(--sand-light);
    border-radius: 8px;
}

.products-note p {
    font-size: 1rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* --- Experience --- */
.experience {
    padding: 8rem 0;
    background: var(--charcoal);
    color: var(--white);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.experience .section-eyebrow {
    color: var(--terracotta-light);
}

.experience .section-headline {
    color: var(--white);
}

.experience-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.experience-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.experience-feature svg {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.experience-images {
    position: relative;
}

.experience-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.experience-image-grid img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.experience-image-grid img:first-child {
    margin-top: 2rem;
}

/* --- Quote --- */
.quote-section {
    padding: 6rem 2rem;
    background: var(--sand-light);
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--terracotta);
    opacity: 0.2;
}

.quote-section blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

.quote-section p {
    font-family: var(--font-serif);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.quote-section footer {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Visit --- */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

.visit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info {
    padding-right: 2rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--sand-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.visit-detail-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    font-size: 1.0625rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--terracotta);
    transition: color 0.3s ease;
}

.visit-detail-value a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.1);
    min-height: 500px;
}

/* --- CTA --- */
.cta {
    padding: 8rem 2rem;
    background: var(--terracotta);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.cta-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-headline em {
    font-style: italic;
    color: var(--sand);
}

.cta-body {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-ghost {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-ghost:hover {
    background: var(--white);
    color: var(--terracotta);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: var(--terracotta);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-contact-label,
.footer-links-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.footer-contact p,
.footer-links li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.footer-contact a,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--terracotta-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 400px;
    text-align: right;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        padding-left: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-layout,
    .experience-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card--featured {
        grid-row: auto;
        grid-column: 1 / -1;
    }
    
    .product-card--featured .product-card-image {
        height: 350px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 1.5rem 4rem;
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-trust {
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--featured {
        grid-column: auto;
    }
    
    .experience-image-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-image-grid img:first-child {
        margin-top: 0;
    }
    
    .visit-map {
        min-height: 350px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-trust-divider {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
