:root {
    --bg-color: #2b2b2b;
    /* main background */
    --hero-bg: linear-gradient(180deg, #383531 0%, #2b2b2b 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #D0C6AF;
    --gold: #f5c518;
    --gold-hover: #d4a70e;
    --font-family: "Archivo", sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.5px;
    width: 936px;
    max-width: 100%;
    height: 60px;
    margin: 0;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.gold-text {
    color: var(--gold) !important;
}

.gold-icon {
    color: var(--gold);
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Navbar */
.navbar {
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo i {
    font-size: 1.5rem;
    color: var(--gold);
}

.custom-logo {
    height: 25px;
    width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    color: #111;
    padding: 0.6rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--bg-color);
    padding: 10rem 5% 0rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 936px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-content p {
    font-size: 16px;
    width: 713px;
    height: 56px;
    max-width: 100%;
    margin: 0;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 40px;
}

/* Mockups */
.hero-mockups {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 2rem;
    /* margin-bottom: -11.5rem; */
}

.hero-mockups::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 77px;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-main-img {
    width: 45%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background-color: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #444;
    position: absolute;
    bottom: -100px;
    transition: transform 0.5s ease;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #111;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background-color: #000;
    border-radius: 15px;
    z-index: 20;
}

/* Center Phone */
.center-phone {
    z-index: 3;
    transform: translateY(0);
}

/* Left Phone */
.left-phone {
    z-index: 2;
    transform: perspective(1000px) rotateY(15deg) rotateZ(-10deg) translateX(-180px) translateY(80px) scale(0.9);
    filter: brightness(0.8);
}

/* Right Phone */
.right-phone {
    z-index: 1;
    transform: perspective(1000px) rotateY(-15deg) rotateZ(10deg) translateX(180px) translateY(80px) scale(0.9);
    filter: brightness(0.8);
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Calculator UI inside Center Phone */
.calc-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    background-color: #000;
}

.calc-display {
    color: white;
    font-size: 4rem;
    text-align: right;
    font-weight: 300;
    margin-bottom: 10px;
    padding: 0 10px;
}

.calc-keypad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.calc-btn {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calc-btn.gray {
    background-color: #a5a5a5;
    color: black;
}

.calc-btn.yellow {
    background-color: #ff9f0a;
    /* iOS calc orange */
    color: white;
    font-size: 1.5rem;
}

/* Side Phones Mockup Content */
.mockup-content {
    padding: 30px 20px;
    height: 100%;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.small-logo {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.large-logo {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mockup-text {
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.mockup-text.sub {
    color: #888;
    font-size: 0.7rem;
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 5% 2.5rem;
    flex-wrap: wrap;
    background-color: var(--bg-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* font-size: 0.9rem;
    font-weight: 400; */
}

.feature-item .custom-logo {
    width: 18px;
    height: 18px;
}

/* Why Choose Section */
.why-choose {
    padding: 3rem 5% 1.5rem;
    background-color: var(--bg-color);
    text-align: center;
}

.section-header {
    max-width: 1213px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.section-header p {
    font-size: 16px;
    width: 1213px;
    height: 56px;
    max-width: 100%;
    margin: 0;
}

.section-header h2 {
    font-size: 42px;
    width: 739px;
    height: 60px;
    max-width: 100%;
    margin: 0;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-cards-left,
.feature-cards-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    min-width: 250px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    rotate: 3deg;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
}

.center-mockup {
    position: relative;
    width: 260px;
    height: 520px;
}

.center-mockup .phone-mockup {
    position: relative;
    bottom: 0;
    transform: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* CTA Banner */
.cta-banner {
    padding: 1.5rem 5% 4rem;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
}

.cta-content {
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    overflow: hidden;
    position: relative;
}

.cta-text {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.cta-text h2 {
    color: #111;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: #555;
    font-size: 1.1rem;
}

.black-btn {
    filter: invert(1);
    margin-top: 1rem;
}

.cta-mockups {
    flex: 1;
    position: relative;
    height: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.cta-mockups-img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: contain;
}

.cta-phone {
    position: absolute;
    bottom: 250px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.cta-phone.center-phone {
    right: 150px;
    z-index: 3;
    transform: translateY(-100px);
}

.cta-phone.left-phone {
    right: 300px;
    z-index: 2;
    transform: perspective(1000px) rotateY(15deg) rotateZ(-10deg) translateY(-50px) scale(0.9);
}

.cta-phone.right-phone {
    right: 0;
    z-index: 1;
    transform: perspective(1000px) rotateY(-15deg) rotateZ(10deg) translateY(-50px) scale(0.9);
}

/* Footer */
footer {
    background-color: #3b3b3b;
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-left p {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

footer p.copyright {
    font-size: 12px;
    width: 100px;
    height: 18px;
    line-height: 18px;
    margin: 1.5rem auto 0 auto;
    text-align: center;
    color: #aaa;
}

footer .divider {
    margin: 2.5rem 0 1.5rem 0;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #ccc;
    font-size: 20px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
}

.footer-social a:hover {
    color: #fff;
}

.insta-img,
.face-img {
    height: 40px;
    width: 40px;
}



/* Responsive */
@media (max-width: 900px) {
    .hero-mockups {
        height: auto;
    }

    .hero-main-img {
        width: 90%;
        max-width: 90%;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .left-phone {
        transform: perspective(1000px) rotateY(15deg) rotateZ(-10deg) translateX(-120px) translateY(50px) scale(0.9);
    }

    .right-phone {
        transform: perspective(1000px) rotateY(-15deg) rotateZ(10deg) translateX(120px) translateY(50px) scale(0.9);
    }

    .features-grid {
        flex-direction: column;
    }

    .center-mockup {
        margin: 2rem 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-mockups {
        width: 100%;
        justify-content: center;
    }

    .cta-phone.center-phone {
        right: 50%;
        transform: translateX(50%) translateY(-100px);
    }

    .cta-phone.left-phone {
        right: 50%;
        transform: perspective(1000px) rotateY(15deg) rotateZ(-10deg) translateX(-80px) translateY(-50px) scale(0.9);
    }

    .cta-phone.right-phone {
        right: 50%;
        transform: perspective(1000px) rotateY(-15deg) rotateZ(10deg) translateX(180px) translateY(-50px) scale(0.9);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        width: auto;
        height: auto;
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 1.8rem;
        width: auto;
        height: auto;
    }

    .hero-content p,
    .section-header p {
        width: auto;
        height: auto;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 8rem;
    }

    .left-phone,
    .right-phone {
        display: none;
    }

    .cta-phone.left-phone,
    .cta-phone.right-phone {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== SUPPORT PAGE ==================== */


.support-hero {
    padding: 10rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
    text-align: left;
    width: 532px;
    height: auto;
    max-width: 100%;
}

.support-hero-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    width: 650px;
    height: 112px;
    max-width: 100%;
    margin: 0;
}

.support-hero-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-hero-img {
    max-width: 120%;
    max-height: 600px;
    object-fit: contain;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 5%;
    display: flex;
    justify-content: center;
}

.faq-box.combined-box {
    background-color: #353437;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 900px;
}

.faq-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 2.5rem 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.combined-box .contact-info {
    text-align: center;
}

.combined-box .contact-info p {
    font-size: 0.95rem;
    color: #bfa07a;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.contact-details {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    flex-wrap: wrap;
}

.contact-details span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-details a {
    color: #ffffff;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--gold);
}

.combined-box .contact-details {
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #1C1B1D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-header {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.faq-question {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.faq-header i {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    background-color: #353437;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1.2rem;
    margin: 0 1.2rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {

    .support-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .support-hero-content h1 {
        text-align: center;
    }

    .support-hero-mockups {
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .faq-box.combined-box {
        padding: 2rem 1.5rem;
    }

    .combined-box .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ==================== PRIVACY PAGE ==================== */

.privacy-page-container {
    padding: 10rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.privacy-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sidebar-nav a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--text-primary);
}

.sidebar-nav a.active {
    color: var(--gold);
    border-left-color: var(--gold);
    font-weight: 500;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.privacy-content p:first-of-type {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.privacy-content .last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.privacy-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-contact-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.privacy-contact-box p {
    margin-bottom: 1.5rem;

}

.privacy-contact-box .contact-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .privacy-sidebar {
        position: relative;
        top: 0;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sidebar-nav a {
        padding-left: 0;
        padding-bottom: 0.5rem;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .sidebar-nav a.active {
        border-bottom-color: var(--gold);
    }
}