/* Hero Section Styles */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 96px);
    padding-bottom: 180px;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 45%, #eef7ef 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(51, 178, 73, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--grey-800);
    margin-bottom: 50px;
    max-width: 500px;
    font-weight: 400;
}

.hero-illustration {
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Location Search Input Card */
.location-search-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    border: 1px solid var(--grey-200);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
}

.search-input-group input {
    flex-grow: 1;
    padding: 16px 20px 16px 48px;
    border-radius: 8px;
    border: 1px solid var(--grey-300);
    font-size: 1.1rem;
    font-family: var(--font-main);
}

.search-input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(51, 178, 73, 0.1);
}

.search-input-group input.shake {
    animation: shakeInput 0.5s ease;
}

.icon-inline {
    flex-shrink: 0;
    color: var(--primary-color);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-hint {
    margin: 0;
    font-size: 0.9rem;
    color: #616161;
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

/* Stats strip */
.stats-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 28px 0;
}

.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item strong {
    font-family: var(--font-display);
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-item span {
    font-size: 0.95rem;
    opacity: 0.92;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.section-title--left {
    text-align: left;
}

.lead {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--grey-800);
}

.check-list {
    margin-top: 16px;
}

.check-list li {
    list-style: none;
    padding: 8px 0 8px 28px;
    position: relative;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.about-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--grey-300);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.about-card p {
    margin-bottom: 20px;
    color: var(--grey-800);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--grey-300);
    margin: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.testimonial-card p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    font-style: italic;
    color: var(--grey-800);
}

.testimonial-card footer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* FAQ */
.container--narrow {
    max-width: 720px;
}

.faq-list {
    margin-top: 24px;
}

.faq-item {
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0 20px;
    background: var(--white);
}

.faq-item summary {
    padding: 18px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding-bottom: 18px;
    margin: 0;
    color: #555;
    line-height: 1.65;
}

/* CTA bottom */
.cta-bottom-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-bottom h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.cta-bottom p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: var(--grey-800);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.15rem;
}

.footer-tagline {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(51, 178, 73, 0.1);
    top: 10%;
    left: -5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(72, 193, 93, 0.15);
    bottom: -10%;
    right: -10%;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(27, 94, 32, 0.08);
    top: 40%;
    right: 15%;
}

/* Service Grid Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.card-image img {
    max-height: 100%;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey-800);
}

/* Partner Grid Styles */
.partner-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border-radius: 30px;
    gap: 60px;
    color: var(--white);
    overflow: hidden;
}

.partner-card.merchant {
    background: linear-gradient(135deg, #1B5E20 0%, #33B249 100%);
}

.partner-card.courier {
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
}

.partner-content {
    max-width: 50%;
}

.partner-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.partner-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.partner-visual {
    max-width: 40%;
}

.partner-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* App Download Section */
.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--grey-200);
    border-radius: 40px;
    padding: 80px;
    gap: 60px;
    overflow: hidden;
}

.app-info {
    max-width: 50%;
}

.app-info h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.app-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.app-badges {
    display: flex;
    gap: 20px;
}

.app-badges img {
    height: 45px;
}

.app-visual img {
    max-height: 500px;
    transform: rotate(10deg);
}

/* Country Grid */
.country-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.country-card {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    transition: 0.3s;
}

.country-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.country-card img {
    height: 24px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; margin-bottom: 60px; }
    .location-search-card { margin-left: auto; margin-right: auto; }
    .hero-eyebrow { text-align: center; }
    .section-title--left { text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-copy { text-align: center; }
    .check-list li { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .app-container { flex-direction: column; padding: 60px 40px; text-align: center; }
    .app-info { max-width: 100%; }
    .app-badges { justify-content: center; flex-wrap: wrap; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-card { flex-direction: column; text-align: center; padding: 40px; }
    .partner-content { max-width: 100%; }
    .partner-visual { max-width: 100%; margin-top: 30px; }
    .footer-container { flex-direction: column; gap: 40px; }
    .footer-links { flex-wrap: wrap; gap: 40px; }
}

.section-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 600px) {
    .service-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .partner-content h2 { font-size: 2rem; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item strong { font-size: 1.4rem; }
    .search-input-group { flex-wrap: wrap; }
    .search-input-group .btn-primary { width: 100%; }
}
