/* 
   realswadeshimart.com - Ultra-Clean Light Theme 3D Domain Landing Page
   Fully Mobile-First & Responsive CSS
*/

:root {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-card-hover: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-highlight: rgba(234, 88, 12, 0.35);
    
    --primary-glow: #ea580c;
    --amber-gold: #d97706;
    --gold-light: #fff7ed;
    --emerald-green: #059669;
    --purple-glow: #7c3aed;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.light-theme {
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(rgba(15, 23, 42, 0.04) 1.2px, transparent 1.2px),
        radial-gradient(circle at 50% 0%, #fff7ed 0%, transparent 60%);
    background-size: 24px 24px, 100% 100%;
    -webkit-font-smoothing: antialiased;
}

/* Three.js Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Soft Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    animation: orbPulse 14s ease-in-out infinite alternate;
}

.orb-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3) 0%, rgba(251, 146, 60, 0) 70%);
    top: -120px;
    left: -100px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0) 70%);
    top: 40%;
    right: 15%;
    animation-delay: -9s;
}

@keyframes orbPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.1) translate(20px, -15px); opacity: 0.45; }
    100% { transform: scale(0.95) translate(-15px, 20px); opacity: 0.25; }
}

/* Layout Wrapper */
.page-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Navigation */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(248, 250, 252, 0.88);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-icon {
    font-size: 1.25rem;
}

.logo-text .tld {
    color: var(--primary-glow);
}

.status-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid rgba(5, 150, 105, 0.25);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-green);
    white-space: nowrap;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--emerald-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-green);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary-glow);
    border-color: var(--border-highlight);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.btn-hero-primary {
    padding: 16px 36px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(234, 88, 12, 0.45);
}

.btn-hero-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-hero-secondary:hover {
    background: #ffffff;
    border-color: var(--primary-glow);
    color: var(--primary-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 99px;
    background: #fff7ed;
    border: 1px solid rgba(234, 88, 12, 0.25);
    color: #c2410c;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-star {
    color: #ea580c;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-main);
    word-break: break-word;
}

.text-3d-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #ea580c 55%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.6;
}

/* 3D Domain Card - Mobile Optimized */
.domain-card-3d {
    width: 100%;
    max-width: 620px;
    min-height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border: 1px solid rgba(234, 88, 12, 0.25);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1),
                0 0 30px rgba(234, 88, 12, 0.08);
    backdrop-filter: blur(20px);
    transition: transform 0.2s var(--ease-out), box-shadow 0.3s ease;
    cursor: pointer;
    perspective: 1000px;
}

.domain-card-3d:hover {
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15),
                0 0 40px rgba(234, 88, 12, 0.18);
    border-color: rgba(234, 88, 12, 0.45);
}

.card-glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    pointer-events: none;
    transform: rotate(30deg);
}

.card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background-color: #ea580c;
    border-radius: 50%;
    box-shadow: 0 0 8px #ea580c;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c2410c;
}

.card-tld-badge {
    margin-left: auto;
    background: #0f172a;
    padding: 4px 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
}

.card-domain-name {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    word-break: break-all;
    line-height: 1.15;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 16px;
    gap: 12px;
}

.owner-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.owner-label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.owner-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.contact-email-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c2410c;
    background: #fff7ed;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    text-decoration: none;
    word-break: break-all;
}

.contact-email-chip:hover {
    background: #ffedd5;
}

/* CTA Group & Trust Strip */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--emerald-green);
    flex-shrink: 0;
}

/* General Section Container */
.section-container {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text-main);
}

.section-title .highlight {
    color: #ea580c;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* 3 Column Feature Grid */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    background: #ffffff;
    border-color: var(--border-highlight);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08), 0 0 20px rgba(234, 88, 12, 0.08);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-amber { background: #fef3c7; color: #d97706; }
.icon-green { background: #ecfdf5; color: #059669; }
.icon-purple { background: #f3e8ff; color: #7c3aed; }
.icon-cyan { background: #ecfeff; color: #0891b2; }
.icon-gold { background: #fef9c3; color: #ca8a04; }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Valuation Scorecard Panel */
.metrics-glass-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.metrics-header {
    text-align: center;
    margin-bottom: 36px;
}

.metrics-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.metrics-header p {
    color: var(--text-muted);
}

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

.metric-box {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: #ea580c;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-unit {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.metric-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.metric-bar {
    width: 100%;
    height: 6px;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #ea580c, #d97706);
    border-radius: 99px;
}

/* Steps Process */
.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #ea580c;
    background: #fff7ed;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.step-arrow {
    font-size: 1.4rem;
    color: var(--text-dim);
}

/* Contact Banner */
.contact-banner-3d {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #ecfdf5 100%);
    border: 1px solid rgba(234, 88, 12, 0.25);
    border-radius: 28px;
    padding: 50px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.contact-banner-content {
    max-width: 780px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-block;
    background: #ea580c;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 14px;
    border-radius: 99px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.contact-banner-3d h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-banner-3d h2 .highlight-text {
    color: #ea580c;
}

.contact-banner-3d p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-detail-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    flex-wrap: wrap;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-main);
    font-weight: 700;
    word-break: break-all;
}

.highlight-link {
    color: #ea580c;
    text-decoration: none;
}

.btn-copy-sm {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.banner-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-banner-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-banner-secondary {
    padding: 16px 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--text-main);
    font-size: 1.05rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 36px 0;
    margin-top: 36px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 6px;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.footer-email {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Toast Notification Mobile Responsive */
.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: #059669;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    max-width: 90vw;
}

.toast-notification.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: -8px auto;
    }
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 0 16px;
    }

    .site-header {
        padding: 14px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-actions .btn {
        flex: 1;
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .hero-section {
        padding: 36px 0 30px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    /* Mobile Domain 3D Card */
    .domain-card-3d {
        padding: 20px 16px;
        min-height: 260px;
        border-radius: 20px;
        margin-bottom: 32px;
    }

    .card-domain-name {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }

    .card-top {
        flex-wrap: wrap;
    }

    .card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-email-chip {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .grid-3col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-container {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .metrics-glass-panel {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .metric-box {
        padding: 16px 10px;
    }

    .metric-value {
        font-size: 2.1rem;
    }

    .contact-banner-3d {
        padding: 32px 16px;
        border-radius: 20px;
    }

    .contact-banner-3d h2 {
        font-size: 1.85rem;
    }

    .banner-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-banner-primary,
    .btn-banner-secondary {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.95rem;
    }

    .card-domain-name {
        font-size: 1.55rem;
    }

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