@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
    --yellow: #ffd200;
    --green: #00843d;
    --dark: #111111;
    --light: #ffffff;
    --off-white: #f8f8f6;
    --text: #1a1a1a;
    --text-muted: #666;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.35s ease;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 210, 0, 0.4);
}

.btn-dark {
    background: var(--dark);
    color: var(--light);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--light);
}

/* ================================================
   HEADER — Logo Only, Transparent, No Border
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo img,
.logo-img {
    height: 80px; /* Reverted to professional size */
    display: block;
    transition: var(--transition);
}

.footer-logo-badge {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -1rem;
    margin-bottom: 2.8rem; /* Fine-tuned to close the gap without overlapping */
    height: 80px; /* Locks the layout space so the grid isn't broken */
    position: relative;
}

.footer-logo {
    height: 80px; /* Base size */
    width: auto;
    display: block;
    transform: scale(4); /* Enlarges perfectly vertically and horizontally */
    transform-origin: left center; /* Grows outward properly */
    pointer-events: none; /* Prevents the invisible padding from blocking clicks */
}

/* Top layer: Show the colored pin, crop out the black text below */
.footer-logo-colored {
    clip-path: inset(0 0 32% 0); /* Show the top 68% of the image */
    filter: none;
}

/* Bottom layer: Show only the text, convert it to white */
.footer-logo-white-text {
    position: absolute;
    top: 20px; /* Fixes the overlap: pulls the smaller text layer cleanly down and away from the pin */
    left: 0;
    clip-path: inset(68% 0 0 0); /* Show the bottom 32% of the image */
    filter: brightness(0) invert(1);
    transform: scale(3.2); /* Decreases the font size of LocallyFound */
    transform-origin: -18.18% center; /* Mathematically keeps the text perfectly centered under the 4x scaled pin */
}



/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    background: var(--green);
    color: var(--light);
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: var(--yellow);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--yellow);
}

.hero .sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-trust {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-line {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    opacity: 1;
    max-width: 480px;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-wrap {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
    width: 100%;
    display: block;
    border-radius: calc(var(--radius-lg) - 4px);
}

.hero-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--yellow);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ================================================
   PROBLEM SECTION
   ================================================ */
.section-white {
    background: var(--light);
}

.section-offwhite {
    background: var(--off-white);
}

.section-yellow {
    background: var(--yellow);
    color: var(--dark);
}

.section-green {
    background: var(--green);
    color: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.label-green {
    background: rgba(0,132,61,0.1);
    color: var(--green);
}

.label-yellow {
    background: rgba(255,210,0,0.25);
    color: #6b5200;
}

.label-dark {
    background: rgba(0,0,0,0.12);
    color: var(--dark);
}

.label-white {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

/* ================================================
   STEP CARDS (Solution section)
   ================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* ================================================
   PROOF SECTION
   ================================================ */
.proof-checklist {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.proof-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.proof-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.proof-item strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.proof-item p {
    font-size: 0.93rem;
    margin: 0;
}

/* ================================================
   VISUAL CARD
   ================================================ */
.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.visual-card img {
    width: 100%;
    display: block;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 340px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-features {
    padding: 3.5rem;
}

.pricing-features h3 {
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.pricing-features .sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark);
}

.feature-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.setup-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-cta {
    background: var(--dark);
    color: white;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.pricing-cta .label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin: 0.5rem 0;
}

.pricing-period {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

/* ================================================
   FAQ
   ================================================ */
.faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-btn .faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--green);
}

.faq-btn.open .faq-icon {
    background: var(--green);
    color: white;
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding-bottom: 1.5rem;
}

.faq-content p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: var(--yellow);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: #fafafa;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--green);
    background: white;
}

.form-group input::placeholder {
    color: #aaa;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
    height: 42px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.7);
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-col p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.6rem;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.25);
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-header .container { justify-content: center; }
    .site-header { padding: 0.3rem 0; }
    .logo-img { height: 60px; }
    .hero { padding-top: 120px; padding-bottom: 60px; }
    .hero-grid, .two-col, .cta-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero .sub { margin: 0 auto 2.5rem; }
    .hero-trust { margin-top: 2rem; }
    .trust-line { margin: 0 auto; }
    section { padding: 60px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-brand p { margin: 0 auto 1.5rem; }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.85rem; }
    
    /* Ensure no-wrap text doesn't break mobile layout */
    .no-wrap-desktop { white-space: normal !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    h1 { font-size: 2.1rem; }
    .btn { width: 100%; }
    .cta-form { padding: 2rem 1.5rem; }
}
