/* ========================================
   SAIFULLAH.AI - SUPPORT PAGE
   Premium Design • Consistent Styling • 2025
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional blue palette */
    --bg: #030712;
    --bg-elevated: #0a1628;
    --bg-card: #0a1628;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary: #1e40af;
    --tertiary: #0ea5e9;
    --accent: #06b6d4;
    --accent-green: #10b981;
    --amber: #f59e0b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow: rgba(59, 130, 246, 0.4);
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ========== SKIP TO CONTENT LINK ========== */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ========== PREMIUM PROFESSIONAL NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.92) 0%,
        rgba(10, 22, 40, 0.88) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    z-index: 10000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.98) 0%,
        rgba(10, 22, 40, 0.96) 100%
    );
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.navbar-glow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08), transparent 70%);
    pointer-events: none;
    opacity: 0.8;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== LOGO SECTION ========== */
.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 8px 14px 8px 8px;
    border-radius: 16px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.navbar-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent 50%, rgba(14, 165, 233, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.navbar-logo:hover {
    background: rgba(59, 130, 246, 0.06);
    transform: translateY(-1px);
}

.navbar-logo:hover::before {
    opacity: 1;
}

.navbar-logo:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 4px;
}

.logo-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary) 0deg,
        var(--accent) 90deg,
        var(--primary-light) 180deg,
        var(--secondary) 270deg,
        var(--primary) 360deg
    );
    opacity: 0.6;
    animation: logoRingSpin 8s linear infinite;
    filter: blur(2px);
}

.logo-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg);
    border-radius: 50%;
}

@keyframes logoRingSpin {
    to { transform: rotate(360deg); }
}

.logo-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0;
    animation: logoPulse 3s ease-out infinite;
}

@keyframes logoPulse {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.logo-icon {
    display: block;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.navbar-logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.08);
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.5));
}

.navbar-logo:hover .logo-ring {
    animation-duration: 3s;
    opacity: 0.9;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: lowercase;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    transition: background-position 0.5s ease;
}

.navbar-logo:hover .logo-text {
    background-position: 100% 0;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.navbar-logo:hover .logo-tagline {
    opacity: 1;
    color: var(--primary-light);
}

/* ========== NAVBAR MENU ========== */
.navbar-menu {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.navbar-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(14, 165, 233, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--text);
}

.navbar-link:hover::before,
.navbar-link.active::before {
    opacity: 1;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 50%;
}

.navbar-link span {
    position: relative;
    z-index: 1;
}

.navbar-link-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
}

.navbar-link-cta .nav-icon {
    opacity: 0.9;
    color: var(--primary-light);
}

.navbar-link-cta:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(14, 165, 233, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.navbar-link-cta::after {
    display: none;
}

.navbar-link:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    color: var(--text);
}

/* ========== NAVBAR RESPONSIVE ========== */
@media (max-width: 900px) {
    .logo-tagline {
        display: none;
    }

    .navbar-menu {
        padding: 4px;
    }

    .navbar-link {
        padding: 10px 14px;
    }

    .nav-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 12px 16px;
    }

    .navbar-glow {
        width: 200px;
        height: 60px;
    }

    .navbar-logo {
        gap: 12px;
        padding: 6px 10px 6px 6px;
    }

    .logo-wrapper {
        width: 38px;
        height: 38px;
    }

    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .logo-ring {
        inset: -2px;
    }

    .logo-pulse {
        inset: -4px;
    }

    .navbar-menu {
        gap: 2px;
        padding: 4px;
        border-radius: 10px;
    }

    .navbar-link {
        font-size: 0.8rem;
        padding: 8px 12px;
        gap: 6px;
        border-radius: 8px;
    }

    .nav-icon {
        width: 14px;
        height: 14px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .navbar-link-cta {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 10px 12px;
    }

    .navbar-logo {
        gap: 10px;
        padding: 4px 8px 4px 4px;
        border-radius: 12px;
    }

    .logo-wrapper {
        width: 34px;
        height: 34px;
    }

    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .navbar-menu {
        background: transparent;
        border: none;
        padding: 0;
    }

    .navbar-link {
        font-size: 0.75rem;
        padding: 8px 10px;
        gap: 4px;
    }

    .navbar-link span {
        display: none;
    }

    .nav-icon {
        width: 18px;
        height: 18px;
        opacity: 0.8;
    }

    .navbar-link-cta span {
        display: inline;
    }

    .navbar-link-cta {
        padding: 8px 12px;
    }
}

/* ========== MAIN CONTENT ========== */
.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
}

/* ========== HEADER ========== */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    margin-bottom: 24px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== PHILOSOPHY QUOTE ========== */
.philosophy {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.philosophy-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ========== SECTION ========== */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
}

/* ========== NOTE BOX ========== */
.note {
    padding: 24px 28px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid var(--amber);
    border-radius: 0 16px 16px 0;
    margin-bottom: 30px;
}

.note-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========== BANK CARD ========== */
.bank-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.bank-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bank-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========== BANK TABLE ========== */
.bank-table {
    width: 100%;
    border-collapse: collapse;
}

.bank-table tr {
    border-bottom: 1px solid var(--glass-border);
}

.bank-table tr:last-child {
    border-bottom: none;
}

.bank-table td {
    padding: 14px 0;
    font-size: 0.95rem;
}

.bank-table td:first-child {
    color: var(--text-dim);
    width: 140px;
    font-weight: 500;
}

.bank-table td:last-child {
    color: var(--text);
    font-weight: 600;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

/* ========== CORRESPONDENT BANKS ========== */
.correspondent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.correspondent-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.correspondent-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.correspondent-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.correspondent-detail {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 2;
}

.correspondent-detail span {
    color: var(--primary-light);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-weight: 500;
}

/* ========== STEPS ========== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.03);
}

.step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== MOBILE BANKING ========== */
.mobile-card {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.mobile-services {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.mobile-number {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--accent-green);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    margin: 20px 0;
}

.mobile-note {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 0;
}

/* ========== CONTACT GRID ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-value {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--primary-light);
}

/* ========== GRATITUDE ========== */
.gratitude {
    text-align: center;
    padding: 56px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 28px;
    margin-top: 70px;
}

.gratitude-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gratitude-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 16px;
    line-height: 1.9;
}

.gratitude-text:last-child {
    margin-bottom: 0;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.footer-links .separator {
    color: var(--text-dim);
    opacity: 0.5;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ========== GOOGLE PLAY DROPDOWN ========== */
.google-play-dropdown {
    position: relative;
}

.google-play-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.google-play-btn:hover {
    background: linear-gradient(135deg, #00e676, #69f0ae);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.google-play-btn .dropdown-arrow {
    transition: transform 0.3s ease;
}

.google-play-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.play-store-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.google-play-dropdown.active .play-store-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.play-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.play-store-link:hover {
    background: rgba(0, 200, 83, 0.2);
}

.store-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #00c853;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .main {
        padding: 100px 20px 60px;
    }

    .header {
        margin-bottom: 40px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .philosophy {
        padding: 32px 24px;
    }

    .philosophy-text {
        font-size: 1.1rem;
    }

    .bank-card {
        padding: 24px;
    }

    .bank-table td:first-child {
        width: 110px;
    }

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

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

    .mobile-card {
        padding: 32px 24px;
    }

    .gratitude {
        padding: 40px 24px;
    }
}

/* ========== FOCUS STYLES ========== */
*:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}
