/* ==========================================================================
   ADWAIT PITALE | PRODUCTION DESIGN SYSTEM & HERO REFINEMENT
   Shift Hero Image Higher & Trust Line Below Hero Image & Copy on Desktop
   ========================================================================== */

:root {
    --bg-primary: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #444444;
    --text-muted: #888888;
    --accent-gold: #CD9F50;
    --accent-gold-dark: #B88C40;
    --accent-gold-light: rgba(205, 159, 80, 0.08);
    --border-faint: #F0F0F0;
    --border-light: #EBEBEB;
    --border-dark: #111111;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --max-width: 1240px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

.svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

.center { text-align: center; }

/* --- Typography Helpers --- */
.gold-text-italic {
    color: var(--accent-gold);
    font-style: italic;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 500;
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section-heading-large {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1.14;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 2rem;
}

/* --- NAVIGATION HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.1rem 0;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.main-nav a:hover { color: var(--accent-gold); }

.btn-gold-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: var(--accent-gold);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-gold-nav:hover {
    background-color: var(--accent-gold-dark);
}

@media (max-width: 850px) {
    .main-nav { display: none; }
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 115px;
    padding-bottom: 35px;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: flex-start;
}

.hero-content {
    padding-top: 5px;
    padding-bottom: 10px;
}

.hero-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-supporting-p1, .hero-supporting-p2 {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    max-width: 530px;
}

.hero-supporting-p2 u {
    text-decoration-color: var(--text-primary);
    text-underline-offset: 3px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn-black-hero, .btn-black-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-black-hero:hover, .btn-black-cta:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #FFFFFF;
}

.btn-outline-hero, .btn-outline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    background-color: #FFFFFF;
    border: 1px solid var(--text-primary);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-outline-hero:hover, .btn-outline-cta:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* HERO TRUST BAR V2 */
.hero-trust-bar-v2 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.6rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 560px;
}

.founders-avatars-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-bar-v2-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-secondary);
    font-weight: 500;
}

.stars-gold {
    color: #333333;
    letter-spacing: 2px;
    margin-left: 2px;
    font-size: 0.95rem;
}

/* HERO PORTRAIT RIGHT COLUMN */
.hero-image-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.hero-portrait-seamless {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    display: block;
    transform: translateY(-25px);
}

@media (max-width: 992px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image-column {
        order: 2;
        align-items: center;
    }
    .hero-portrait-seamless {
        max-width: 100%;
        transform: none;
        margin-top: 10px;
    }
    .hero-trust-bar-v2 {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1.5rem;
        border-top: 1px solid var(--border-light);
        max-width: 100%;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
}

/* --- THE REAL PROBLEM --- */
.real-problem-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.editorial-statements-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    margin: 45px 0 50px 0;
}

.editorial-statement-card {
    position: relative;
    padding: 1.8rem 2rem;
    border-left: 2px solid var(--accent-gold);
    background-color: #FFFFFF;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.3rem;
    opacity: 0.7;
}

.statement-quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.35;
}

.editorial-problem-summary {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.2rem;
    border: 1px solid var(--border-light);
    background-color: #FFFFFF;
    text-align: center;
}

.summary-lead {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.summary-sub {
    font-size: 1.05rem;
    color: var(--accent-gold);
    font-weight: 500;
}

@media (max-width: 768px) {
    .editorial-statements-wrapper { grid-template-columns: 1fr; }
}

/* --- PERSPECTIVE SECTION --- */
.perspective-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.supplied-graphic-img {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    display: block;
}

.perspective-callout {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.callout-quote {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* --- REV ENGINE SECTION --- */
.rev-engine-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.rev-engine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rev-engine-copy {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.rev-engine-action { margin-top: 1.8rem; }

.diagram-frame-clean {
    border: 1px solid var(--border-light);
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.diagram-frame-clean:hover { border-color: var(--accent-gold); }

.supplied-rev-engine-img { width: 100%; display: block; }

@media (max-width: 992px) {
    .rev-engine-grid { grid-template-columns: 1fr; }
}

/* --- WHAT I HELP YOU BUILD --- */
.help-build-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.help-build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.build-card {
    border: 1px solid var(--border-faint);
    padding: 2.2rem 1.8rem;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.build-card:hover { border-color: var(--accent-gold); }

.build-card-icon {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 1.1rem;
}

.build-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.build-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 992px) {
    .help-build-grid { grid-template-columns: 1fr; }
}

/* --- RESULTS SECTION --- */
.results-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.editorial-storytelling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 45px 0;
}

.story-metric-item {
    border: 1px solid var(--border-light);
    padding: 2.2rem;
}

.metric-header {
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.9rem;
}

.stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.metric-story {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.editorial-growth-statement {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--text-primary);
    margin-top: 1.8rem;
}

@media (max-width: 992px) {
    .editorial-storytelling-grid { grid-template-columns: 1fr; }
}

/* --- HOW WE WORK TOGETHER --- */
.work-together-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.horizontal-process-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-top: 45px;
}

.process-node {
    flex: 1;
    border: 1px solid var(--border-light);
    padding: 1.8rem 1.4rem;
    background-color: #FFFFFF;
}

.node-featured {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.node-step {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.gold-step { color: var(--accent-gold); }

.node-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.node-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.node-arrow {
    display: flex;
    align-items: center;
    margin-top: 3.2rem;
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .horizontal-process-bar { flex-direction: column; }
    .node-arrow { display: none; }
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: flex-start;
}

.standing-portrait-img {
    width: 100%;
    display: block;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-story-body p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
}

.story-highlight {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    font-style: italic;
}

.story-closing {
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.accordion-wrapper {
    max-width: 850px;
    margin: 40px auto 0 auto;
    border-top: 1px solid var(--border-light);
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.acc-icon {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-body p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-secondary);
    padding-bottom: 1.4rem;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    padding: 110px 0;
    border-top: 1px solid var(--border-light);
}

.final-cta-heading {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.3rem;
}

.final-cta-supporting {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .final-cta-heading { font-size: 2.2rem; }
    .final-cta-buttons { flex-direction: column; }
}

/* --- SLEEK DARK FOOTER --- */
.site-footer {
    background-color: #161616;
    color: #CCCCCC;
    padding: 70px 0 35px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #282828;
}

.footer-brand-logo {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 1.25rem;
}

.footer-brand-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #999999;
    max-width: 320px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
}

.footer-links-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-stack a {
    font-size: 0.92rem;
    color: #CCCCCC;
    transition: color 0.25s ease;
}

.footer-links-stack a:hover {
    color: var(--accent-gold);
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-icon-link .svg-icon {
    color: #CCCCCC;
    transition: color 0.25s ease;
}

.footer-icon-link:hover .svg-icon {
    color: var(--accent-gold);
}

/* FOOTER BOTTOM ROW */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #888888;
}

.footer-copyright-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-copyright-legal a {
    color: #AAAAAA;
    transition: color 0.25s ease;
}

.footer-copyright-legal a:hover {
    color: var(--accent-gold);
}

.legal-divider {
    color: #444444;
}

.footer-social-badges {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #242424;
    color: #CCCCCC;
    transition: all 0.3s ease;
}

.social-badge .svg-icon {
    width: 18px;
    height: 18px;
}

.social-badge:hover {
    background-color: var(--accent-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.badge-whatsapp:hover {
    background-color: #25D366;
    color: #FFFFFF;
}

@media (max-width: 850px) {
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* --- MODAL DIALOGS --- */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(6px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex !important;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #FFFFFF;
    padding: 35px;
    max-width: 600px;
    width: 100%;
    border: 1px solid var(--accent-gold);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-large { max-width: 880px; }

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-header h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0.4rem; }

.modal-img-full { width: 100%; margin-top: 15px; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
