@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@500;700;800&family=Kavivanar&family=Rozha+One&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

/* Home page */
/* ===================================================
   VARIABLES & GLOBAL RESETS
   =================================================== */
:root {
    --bg-cream: #faf5ed;
    --bg-white: #ffffff;
    --text-dark: #1b1918;
    --text-muted: #5e5a55;
    --text-light: #87827b;
    --gold: #d89f2a;
    --gold-hover: #c48c1e;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-pill: 999px;
    --radius-card: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow {
    max-width: 820px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 45px;
    letter-spacing: -0.01em;
}

.section-heading.centered {
    text-align: center;
}

/* ===================================================
   1. PILL HEADER & HERO
   =================================================== */
.site-header {
    padding: 24px 0 10px 0;
    display: flex;
    justify-content: center;
}

.pill-nav {
    background-color: #1a1715;
    color: #ffffff;
    border-radius: var(--radius-pill);
    padding: 8px 12px 8px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-brand {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #c9c5be;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #ffffff;
}

.nav-btn {
    background-color: var(--gold);
    color: #1a1715;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    transition: background-color 0.25s;
}

.nav-btn:hover {
    background-color: var(--gold-hover);
}

/* Hero Section */
.hero-section {
    padding: 70px 0 100px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    flex: 1.1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-gold {
    background-color: var(--gold);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(216, 159, 42, 0.35);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-1px);
}

.phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-perks li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-perks .check {
    color: var(--gold);
    font-weight: bold;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-media-wrapper {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* ===================================================
   2. WHY CHOOSE US GRID
   =================================================== */
.features-section {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    height: 70px;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-style: italic;
    color: #c9c2b8;
    font-weight: 500;
}

/* Mock thumbnail images for the cards */
.card-thumb {
    width: 75px;
    height: 55px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #eee;
}

.card-thumb-credit { background: linear-gradient(135deg, #222, #444); border-radius: 6px; }
.card-thumb-cal    { background: linear-gradient(135deg, #fbfbfb, #e0e0e0); border-radius: 4px; border: 1px solid #ccc; }
.card-thumb-shake  { background: linear-gradient(135deg, #f7d5a5, #d89f2a); }
.card-thumb-coins  { background: radial-gradient(circle, #f3ca65, #b8860b); border-radius: 50%; width: 55px; }
.card-thumb-clock  { background: #ffffff; border: 3px solid #333; border-radius: 50%; width: 55px; }
.card-thumb-house  { background: linear-gradient(135deg, #e3dfda, #c4bebe); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===================================================
   3. COMMITMENTS / SECURITY
   =================================================== */
.commitments-section {
    padding: 80px 0;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.commit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.commit-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(216, 159, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.commit-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.commit-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================================
   4. FAQ ACCORDION
   =================================================== */
.faq-section {
    padding: 70px 0 90px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-left: 20px;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-panel {
    max-height: 250px;
    padding-bottom: 22px;
}

.faq-panel p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===================================================
   5. CONTACT & ESTIMATION FORM
   =================================================== */
.contact-section {
    padding: 80px 0 120px 0;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 35px;
    margin-top: -30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-box .icon-bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(216, 159, 42, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-box strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-box p, 
.contact-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.contact-box .caption {
    font-size: 12.5px;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

/* White Form Card */
.contact-form-card {
    flex: 1.1;
    background: var(--bg-white);
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-card h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 25px;
}

.estimation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row.two-col {
    display: flex;
    gap: 16px;
}

.estimation-form input,
.estimation-form select,
.estimation-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #e5e0d8;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    color: var(--text-dark);
    background-color: #faf8f5;
    transition: border-color 0.2s;
}

.estimation-form input:focus,
.estimation-form select:focus,
.estimation-form textarea:focus {
    border-color: var(--gold);
    background-color: #ffffff;
}

.btn-submit {
    background-color: var(--gold);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.25s, transform 0.2s;
}

.btn-submit:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* ===================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   =================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-perks {
        align-items: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px;
    }

    .pill-nav {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-links {
        display: none; /* Collapses menu links on small mobile screens */
    }

    .hero-title {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row.two-col {
        flex-direction: column;
    }
}


/* ===================================================
   ABOUT US PAGE STYLES (MATCHED TO HOME PALETTE)
   =================================================== */

.about-page {
    background-color: #faf5ed;
    color: #1b1918;
    padding-bottom: 80px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Badge Tags (SOLUTION / TEAM) */
.badge-tag {
    display: inline-block;
    background-color: rgba(216, 159, 42, 0.15);
    color: #b37e17;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* 1. Hero & Mission */
.about-hero-section {
    padding: 70px 0 40px 0;
    text-align: center;
}

.mission-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 27px;
    line-height: 1.5;
    font-weight: 400;
    color: #2b2724;
    margin-bottom: 50px;
}

.mission-text strong {
    font-weight: 700;
    color: #1b1918;
}

/* Stats Card */
.stats-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(216, 159, 42, 0.25);
    padding: 35px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #eae5dc;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #1b1918;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12.5px;
    color: #7a756f;
    font-weight: 500;
}

/* 2. Alternating Solutions Rows */
.about-solutions-section {
    padding: 80px 0;
}

.solution-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 60px;
}

.solution-row.reverse {
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1b1918;
    line-height: 1.2;
}

.solution-text .lead-desc {
    color: #635e58;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
}

/* Sub-features grid in Row 1 */
.sub-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.sub-feature-item .sub-icon {
    font-size: 20px;
    color: #d89f2a;
    margin-bottom: 8px;
}

.sub-feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sub-feature-item p {
    font-size: 13px;
    color: #7a756f;
    line-height: 1.5;
}

/* Stacked features in Row 2 */
.sub-features-stacked {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bullet-icon {
    background-color: rgba(216, 159, 42, 0.15);
    color: #d89f2a;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-bullet h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-bullet p {
    font-size: 13px;
    color: #7a756f;
}

/* Solution Visual & Glass Chips */
.solution-visual {
    flex: 1.05;
}

.rounded-corner-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.solution-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Floating Chips inside images */
.metric-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.chip-top {
    top: 30px;
    left: 40px;
}

.chip-bottom {
    bottom: 35px;
    right: 50px;
}

.metric-chip .chip-dot {
    width: 7px;
    height: 7px;
    background-color: #2ea44f;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.metric-chip .dot-orange {
    background-color: #d89f2a;
}

.metric-chip strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1b1918;
}

.metric-chip span {
    font-size: 11px;
    color: #635e58;
}

/* Testimonial chip */
.quote-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-card p {
    font-size: 13.5px;
    font-style: italic;
    color: #2b2724;
    line-height: 1.5;
    margin-bottom: 6px;
}

.quote-author {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #d89f2a;
    text-transform: uppercase;
}

.section-divider {
    border: none;
    border-top: 1px solid #eae5dc;
    margin: 50px 0;
}

/* 3. Team Grid */
.team-section {
    padding: 60px 0;
}

.team-header-block {
    margin-bottom: 50px;
}

.team-header-block .section-heading {
    margin-bottom: 12px;
}

.team-header-block .section-subtitle {
    font-size: 15px;
    color: #7a756f;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px 0 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1918;
    margin-bottom: 4px;
}

.member-role {
    font-size: 12.5px;
    color: #8c867e;
    display: block;
    margin-bottom: 24px;
}

/* Photo Frame with diagonal cut corner accent matching image */
.member-photo-frame {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #f4efe7;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%); /* Diagonal cut corner */
}

.member-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ===================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   =================================================== */
@media (max-width: 992px) {
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .stat-col:nth-child(2)::after {
        display: none;
    }

    .solution-row,
    .solution-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-text {
        font-size: 21px;
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-col::after {
        display: none !important;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .sub-features-grid {
        grid-template-columns: 1fr;
    }

    .solution-img {
        height: 260px;
    }

    .metric-chip {
        padding: 8px 12px;
    }

    .metric-chip strong {
        font-size: 16px;
    }
}

/* ===================================================
   SHARED STYLES FOR INNER PAGES (CREAM & GOLD PALETTE)
   =================================================== */

.page-wrapper {
    background-color: #faf5ed;
    color: #1b1918;
    min-height: 80vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-center { text-align: center; }
.text-gold { color: #d89f2a !important; }
.section-padding { padding: 60px 0; }

.page-hero {
    padding: 60px 0 20px 0;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin: 12px 0 16px 0;
    color: #1b1918;
}

.page-subtitle {
    font-size: 16px;
    color: #635e58;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Common Gold Buttons */
.btn-solid-gold {
    display: inline-block;
    background-color: #d89f2a;
    color: #ffffff;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-solid-gold:hover {
    background-color: #c48c1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(216, 159, 42, 0.3);
}

.btn-outline-gold {
    display: inline-block;
    background-color: transparent;
    border: 1.5px solid #d89f2a;
    color: #1b1918;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-gold:hover {
    background-color: #d89f2a;
    color: #ffffff;
}

/* ===================================================
   FEATURES PAGE
   =================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(216, 159, 42, 0.2);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-style: italic;
    color: #d89f2a;
    display: block;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: #635e58;
    font-size: 14px;
    line-height: 1.6;
}

.bg-card-band {
    background-color: #f4efe7;
}

.app-split-showcase {
    display: flex;
    align-items: center;
    gap: 70px;
}

.app-mockup-frame {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Phone UI Mockup */
.phone-shell {
    width: 290px;
    height: 520px;
    background: #111111;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid #292929;
}

.phone-screen {
    background: #ffffff;
    height: 100%;
    border-radius: 30px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screen-header span {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
}

.screen-header strong {
    font-size: 24px;
    display: block;
    color: #1b1918;
}

.screen-card-visual {
    background: linear-gradient(135deg, #590d0d, #2b0606);
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-brand {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-weight: 700;
}

.activity-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.app-details-content {
    flex: 1.2;
}

.app-details-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 25px;
}

.feature-bullets-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bullet-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(216, 159, 42, 0.15);
    color: #d89f2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-bullets-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-bullets-list p {
    font-size: 14px;
    color: #635e58;
}

/* ===================================================
   PRICING PAGE
   =================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eae5dc;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.highlighted {
    border: 2px solid #d89f2a;
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(216, 159, 42, 0.15);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #d89f2a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 999px;
}

.tier-name {
    font-size: 22px;
    margin-bottom: 8px;
}

.tier-desc {
    font-size: 13px;
    color: #7a756f;
    min-height: 40px;
}

.tier-price {
    margin: 25px 0 30px 0;
    display: flex;
    align-items: baseline;
}

.tier-price .currency { font-size: 22px; font-weight: 700; }
.tier-price .amount { font-size: 46px; font-weight: 800; line-height: 1; }
.tier-price .period { font-size: 14px; color: #7a756f; margin-left: 6px; }

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.tier-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2b2724;
}

.tier-features li span {
    color: #d89f2a;
    font-weight: bold;
}

.tier-features li.disabled {
    color: #a8a29a;
}

.tier-features li.disabled span {
    color: #c9c2b8;
}

/* ===================================================
   SUPPORT PAGE
   =================================================== */

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.support-channel-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.channel-icon {
    font-size: 30px;
    margin-bottom: 18px;
}

.support-channel-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.support-channel-card p {
    font-size: 13.5px;
    color: #635e58;
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-link {
    color: #d89f2a;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

.direct-contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(216, 159, 42, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-methods {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #d89f2a;
}

/* ===================================================
   LEGAL PAGE
   =================================================== */

.legal-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.legal-sidebar {
    flex: 0 0 260px;
    position: sticky;
    top: 100px;
}

.legal-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-nav-list a {
    color: #635e58;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.legal-nav-list a.active,
.legal-nav-list a:hover {
    background: #f4efe7;
    color: #1b1918;
    font-weight: 600;
}

.legal-article {
    flex: 1;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.legal-section-block {
    margin-bottom: 35px;
}

.legal-section-block h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.legal-section-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* ===================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   =================================================== */

@media (max-width: 992px) {
    .steps-grid,
    .pricing-grid,
    .support-channels-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlighted {
        transform: none;
    }

    .app-split-showcase {
        flex-direction: column;
    }

    .direct-contact-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .contact-methods {
        justify-content: center;
    }

    .legal-container {
        flex-direction: column;
    }

    .legal-sidebar {
        position: static;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 10px;
    }
}

/* Language change button css */
.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: #d4af37 !important; /* Gold active color */
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}