@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');


html {
    scroll-behavior: smooth;
}

:root {
    --primary-navy: #001f3f;
    --accent-blue: #003366;
    --navy-deep: #001226;
    --pure-white: #ffffff;
    --pure-ivory: #FFFFF0;
    --off-white: #f8f9fa;
    --silver: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-accent: #c5a059;
    --transition-curve: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--gold-accent), var(--accent-blue));
    z-index: 10001;
    transition: width 0.1s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto !important;
}

body {
    background-color: var(--pure-white);
    color: var(--primary-navy);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.6s var(--transition-curve);
    letter-spacing: -0.01em;
}


body.fade-in {
    opacity: 1;
}


h1,
h2,
h3,
h4,
h5,
h6,
.luxury-font {
    font-family: 'Montserrat', sans-serif;
}



/* Splash Screen / Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #000814 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
}


.loader-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.loader-tick-box {
    width: 55px;
    height: 55px;
    background: #001f3f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.loader-tick {
    width: 50px;
    height: 50px;
    color: #ffffff;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawTick 1.5s ease-out forwards;
}

@keyframes drawTick {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes glowTick {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 31, 63, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(0, 31, 63, 0.8));
    }
}

.loader-logo {
    font-size: 3.8rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    position: relative;
    background: linear-gradient(to right, #ffffff 20%, #001f3f 40%, #001f3f 60%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), #ffffff, rgba(255, 255, 255, 0.2), transparent);
    animation: lineExpandLux 3.5s ease-in-out forwards;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes loaderFadeLux {
    from {
        opacity: 0.4;
        letter-spacing: 15px;
        filter: blur(3px);
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        letter-spacing: 22px;
        filter: blur(0);
        transform: scale(1);
    }
}

@keyframes lineExpandLux {
    to {
        width: 400px;
    }
}

#loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-navy);
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 31, 63, 0.8);
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s, height 0.3s, background-color 0.3s;
    will-change: transform;
}

.custom-cursor-follower.active {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 31, 63, 0.05);
    border-color: var(--primary-navy);
}

/* White Cursor for Dark Sections */
.custom-cursor-dot.cursor-white {
    background-color: var(--pure-white);
}

.custom-cursor-follower.cursor-white {
    border-color: rgba(255, 255, 255, 0.6);
}

.custom-cursor-follower.cursor-white.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--pure-white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--transition-curve);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-from-top {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-from-top.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 31, 63, 0.1);
    }

    50% {
        text-shadow: 0 0 15px rgba(0, 31, 63, 0.2);
    }

    100% {
        text-shadow: 0 0 5px rgba(0, 31, 63, 0.1);
    }
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--pure-white);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.nav-tick-box {
    width: 28px;
    height: 28px;
    background: var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-tick {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    font-variant: normal;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: width 0.3s var(--transition-curve);
}

.nav-links li a:hover {
    color: var(--gold-accent);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #eef5ff 100%);
    position: relative;
    padding: 80px 20px;
}

.subpage-hero {
    min-height: auto !important;
    padding: 140px 20px 40px !important;
    /* Menüden kurtulması için boşluk ayarlandı, alt boşluk azaltıldı */
}

.subpage-hero h1 {
    font-size: 3rem !important;
    margin-bottom: 10px !important;
}

.subpage-hero p {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
}

.hero h1,
.hero p,
.hero .btn-luxury {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5.5rem;
    /* Increased for impact */
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary-navy) 20%, var(--accent-blue) 40%, var(--gold-accent) 50%, var(--accent-blue) 60%, var(--primary-navy) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 6s linear infinite;
    font-weight: 800;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 40px;
    color: var(--primary-navy);
}

.btn-luxury {
    padding: 18px 50px;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.05);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    background: var(--primary-navy);
    color: var(--pure-white);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.25);
    letter-spacing: 4px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.06);
    border-color: var(--gold-accent);
}

/* Sections */
section {
    padding: 20px 10% 40px;
    background: var(--pure-white);
    position: relative;
}

.grid-pattern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 31, 63, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 31, 63, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.grid-pattern>* {
    position: relative;
    z-index: 1;
}

.luxury-dark-section {
    background: var(--navy-deep) !important;
    color: var(--pure-ivory) !important;
    position: relative;
    overflow: hidden;
}

.luxury-dark-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 51, 102, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.luxury-dark-section .section-title {
    color: var(--pure-ivory) !important;
}

.luxury-dark-section p {
    color: var(--pure-ivory) !important;
    opacity: 0.9;
}

.luxury-dark-section h3,
.luxury-dark-section h4 {
    color: var(--gold-accent) !important;
}

/* Fix for white cards inside dark sections */
.luxury-dark-section .card {
    background: var(--pure-white) !important;
}

.luxury-dark-section .card p {
    color: var(--primary-navy) !important;
}

.luxury-dark-section .card h3,
.luxury-dark-section .card h4 {
    color: var(--primary-navy) !important;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: var(--primary-navy);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-navy);
    margin: 20px auto 0;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.card {
    background: var(--off-white);
    padding: 60px 50px;
    border: 1px solid var(--silver);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 31, 63, 0.05);
    font-family: 'Inter', sans-serif;
}

.card:hover .card-number {
    color: rgba(0, 31, 63, 0.1);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    letter-spacing: 1px;
    padding-right: 40px;
}

.card p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.luxury-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.luxury-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.luxury-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.card-footer-text {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-navy);
    border-top: 1px solid var(--silver);
    padding-top: 20px;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #001226;
    padding: 100px 10% 40px;
    color: var(--pure-ivory);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--pure-white);
    margin-bottom: 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-col ul li a:hover {
    color: var(--pure-white);
    padding-left: 10px;
}

.copyright {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Logo Ticker (Marquee) */
.logo-ticker {
    padding: 60px 0;
    background: #fcfcfc;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.ticker-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollTicker 30s linear infinite;
    align-items: center;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    width: 250px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    filter: grayscale(1) opacity(0.4);
    transition: all 0.4s ease;
}

.ticker-item:hover {
    filter: grayscale(0) opacity(0.8);
}

.ticker-item span {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-navy);
    letter-spacing: 2px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Success Counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 40px 0;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.stat-item p {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Floating Elements */
.float-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    filter: blur(1px);
}

.float-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    animation: floatingObj 20s infinite linear;
}

.float-2 {
    bottom: 25%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 1px solid var(--accent-blue);
    transform: rotate(45deg);
    animation: floatingObj 25s infinite linear reverse;
}

@keyframes floatingObj {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Masterpiece Stats Card */
.masterpiece-stat {
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%) !important;
    position: relative;
    box-shadow: 0 40px 100px rgba(197, 160, 89, 0.05);
}

.masterpiece-stat::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, var(--gold-accent), transparent);
    z-index: -1;
    opacity: 0.3;
}

.masterpiece-stat h2 {
    color: var(--gold-accent) !important;
    text-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 60px auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 31, 63, 0.1);
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 0;
    cursor: none !important;
    text-align: left;
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--gold-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
    padding-top: 10px;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer !important;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col ul li a {
        white-space: normal;
    }

    nav {
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {

    /* Cursor'ı mobilde kapat */
    .custom-cursor-dot,
    .custom-cursor-follower {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .subpage-hero {
        padding: 120px 20px 40px !important;
    }

    .subpage-hero h1 {
        font-size: 2rem !important;
    }

    .subpage-hero p {
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Hamburger Menü Aktif */
    .hamburger {
        display: flex;
    }

    nav {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    nav.scrolled {
        padding: 10px 20px;
    }

    .nav-logo-container {
        margin-bottom: 0;
        gap: 8px;
    }

    .nav-tick-box {
        width: 24px;
        height: 24px;
    }

    .nav-tick {
        width: 16px;
        height: 16px;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .nav-links {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        font-weight: 600;
    }

    .nav-links li a:hover::after {
        width: 0;
    }

    .nav>.btn-luxury {
        display: none;
    }

    .btn-luxury {
        padding: 14px 30px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .navbar-btn {
        display: none;
    }

    section {
        padding: 60px 5%;
    }

    .content-section {
        padding: 40px 5% !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .card {
        padding: 35px 25px;
    }

    .card h3 {
        font-size: 1.3rem;
        padding-right: 0;
    }

    .card p {
        font-size: 0.95rem;
    }

    .grid-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo-ticker {
        padding: 40px 0;
    }

    .card-number {
        font-size: 2rem;
        right: 20px;
        top: 20px;
    }

    .strategy-grid,
    .narrative-grid {
        grid-template-columns: 1fr !important;
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 12px 0;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    footer {
        padding: 60px 5% 30px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .loader-logo {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .loader-tick {
        width: 40px;
        height: 40px;
    }
}