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

:root {
    --green: #16a34a;
    --green-dark: #087f3d;
    --green-deep: #075c31;
    --green-light: #eaf8ef;

    --orange: #f59e0b;
    --orange-light: #fff7e6;

    --text: #111827;
    --muted: #667085;
    --border: #e6e9ee;
    --bg: #ffffff;
    --bg-soft: #f7faf8;

    --radius: 22px;
    --shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-left: auto;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    object-fit: cover;
}

.brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--green-dark);
}

.brand span {
    font-size: 11px;
    color: var(--muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    transition: .2s;
}

.desktop-nav a:hover {
    color: var(--green);
}

.header-cta {
    background: var(--green);
    color: white;
    padding: 10px 21px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    transition: .2s;
}

.header-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn,
.mobile-nav {
    display: none;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(22,163,74,.08), transparent 30%),
        linear-gradient(180deg, #f8fcf9 0%, #fff 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 75px 0 85px;
}

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

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 800;
    font-size: 14px;
}

.eyebrow {
    background: var(--green-light);
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 22px;
}

.hero h1 span,
.section-heading h2 span,
.section-content h2 span,
.app-content h2 span,
.cta-content h2 span,
.contact-info h2 span {
    color: var(--green);
}

.hero-text {
    color: var(--muted);
    font-size: 18px;
    max-width: 570px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 24px;
    border-radius: 13px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 10px 25px rgba(22,163,74,.18);
}

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

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

.btn-light:hover {
    border-color: var(--green);
    color: var(--green);
}

.hero-points {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero-points div {
    font-size: 13px;
    font-weight: 700;
    color: #56616f;
}

.hero-points span {
    color: var(--green);
    margin-left: 5px;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 410px;
    height: 410px;
    background: rgba(22,163,74,.10);
    border-radius: 50%;
    filter: blur(2px);
}

.hero-card-main {
    position: relative;
    z-index: 2;
    width: 310px;
    min-height: 510px;
    background: white;
    border: 7px solid #17201a;
    border-radius: 42px;
    box-shadow: 0 35px 80px rgba(0,0,0,.16);
    padding: 26px 17px 20px;
    overflow: hidden;
}

.phone-top {
    width: 105px;
    height: 22px;
    background: #17201a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mock-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 5px 20px;
    font-weight: 900;
    color: var(--green-dark);
}

.mock-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
}

.mock-search {
    background: #f4f6f5;
    border-radius: 12px;
    padding: 10px;
    color: #929aa3;
    display: flex;
    gap: 8px;
    font-size: 11px;
}

.mock-section-title {
    font-weight: 800;
    font-size: 14px;
    margin: 28px 0 13px;
}

.mock-actions {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

.mock-actions div {
    background: #f5faf7;
    border-radius: 13px;
    padding: 12px 4px;
    text-align: center;
}

.mock-actions b {
    display: block;
    color: var(--green);
    font-size: 23px;
    line-height: 1;
}

.mock-actions span {
    font-size: 10px;
    font-weight: 700;
}

.mock-result {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3fbf6;
    margin-top: 20px;
    padding: 13px;
    border-radius: 15px;
}

.result-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.mock-result strong,
.mock-result small {
    display: block;
}

.mock-result strong {
    font-size: 12px;
}

.mock-result small {
    color: #87918b;
    font-size: 9px;
}

.mock-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    background: #fff8e9;
    padding: 14px;
    border-radius: 15px;
}

.mock-score span {
    font-size: 10px;
}

.mock-score strong {
    color: #ca8300;
    font-size: 13px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: white;
    border-radius: 17px;
    box-shadow: var(--shadow);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card-one {
    top: 100px;
    right: 20px;
}

.floating-card-two {
    bottom: 95px;
    left: 0;
}

.floating-icon {
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    font-size: 10px;
    color: #8a929b;
}


/* ================= TRUST ================= */

.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.trust-grid > div {
    padding: 28px 18px;
    text-align: center;
    border-left: 1px solid var(--border);
}

.trust-grid > div:last-child {
    border-left: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 15px;
    color: var(--green-dark);
}

.trust-grid span {
    font-size: 11px;
    color: var(--muted);
}


/* ================= SECTIONS ================= */

.section {
    padding: 105px 0;
}

.about-section,
.app-section,
.contact-section {
    background: white;
}

.features-section,
.faq-section {
    background: var(--bg-soft);
}

.two-column,
.app-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.section-content h2,
.app-content h2,
.contact-info h2 {
    font-size: clamp(32px,4vw,48px);
    line-height: 1.3;
    font-weight: 900;
    margin: 12px 0 18px;
}

.section-heading p,
.section-content > p,
.app-content > p,
.contact-info > p {
    color: var(--muted);
    font-size: 16px;
}

.section-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    width: min(450px,100%);
    min-height: 430px;
    background: linear-gradient(145deg,#f2faf5,#fff);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    border: 1px solid var(--border);
}

.visual-box img {
    max-width: 100%;
    max-height: 350px;
}

.about-list {
    margin-top: 30px;
    display: grid;
    gap: 17px;
}

.about-list > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 12px;
}

.about-list span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.about-list strong {
    font-size: 15px;
}

.about-list p {
    color: var(--muted);
    font-size: 13px;
}


/* ================= FEATURES ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 245px;
    overflow: hidden;
    transition: .25s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card.featured {
    background: linear-gradient(145deg,var(--green),var(--green-dark));
    color: white;
    border-color: transparent;
}

.feature-card.featured p {
    color: rgba(255,255,255,.8);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-light);
    color: var(--green);
    font-size: 22px;
    margin-bottom: 20px;
}

.featured .feature-icon {
    background: rgba(255,255,255,.15);
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}

.feature-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.feature-number {
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    opacity: .05;
}


/* ================= HOW ================= */

.steps {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: center;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto -12px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.step-icon {
    width: 86px;
    height: 86px;
    margin: auto;
    background: var(--green-light);
    color: var(--green);
    border-radius: 25px;
    display: grid;
    place-items: center;
    font-size: 32px;
}

.step h3 {
    margin-top: 18px;
    font-size: 18px;
}

.step p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.step-line {
    height: 2px;
    border-top: 2px dashed #bfe2ca;
}


/* ================= APP ================= */

.app-content {
    max-width: 560px;
}

.app-checks {
    margin: 28px 0;
    display: grid;
    gap: 10px;
}

.app-checks div {
    font-weight: 700;
    font-size: 14px;
}

.app-checks span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-visual img {
    max-width: 270px;
    width: 100%;
    max-height: 480px;
}


/* ================= CTA ================= */

.cta-section {
    background:
        radial-gradient(circle at 85% 30%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg,var(--green-dark),var(--green));
    color: white;
    padding: 90px 0;
}

.cta-inner {
    text-align: center;
}

.section-label.light {
    color: #d9ffe5;
}

.cta-content h2 {
    font-size: clamp(34px,5vw,55px);
    line-height: 1.3;
    font-weight: 900;
    margin: 12px 0;
}

.cta-content h2 span {
    color: #b8f5cb;
}

.cta-content p {
    max-width: 620px;
    margin: auto;
    color: rgba(255,255,255,.82);
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.store-link {
    display: block;
    width: 205px;
    height: 64px;
    background: white;
    border-radius: 10px;
    padding: 5px;
    transition: .2s;
}

.store-link:hover {
    transform: translateY(-3px);
}

.store-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.disabled-store {
    cursor: default;
}

.coming-soon {
    display: block;
    margin-top: 15px;
    color: rgba(255,255,255,.65);
}


/* ================= FAQ ================= */

.faq-container {
    max-width: 850px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 0 20px;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-list summary span {
    color: var(--green);
    font-size: 22px;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    color: var(--muted);
    padding: 0 0 20px;
    font-size: 14px;
}

.faq-list details a {
    color: var(--green);
    font-weight: 800;
}


/* ================= CONTACT ================= */

.contact-info {
    max-width: 530px;
}

.contact-items {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-items a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: .2s;
}

.contact-items a:hover {
    border-color: var(--green);
    transform: translateX(-3px);
}

.contact-items a > span {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.contact-items small,
.contact-items strong {
    display: block;
}

.contact-items small {
    color: var(--muted);
    font-size: 11px;
}

.contact-items strong {
    font-size: 14px;
}

.lead-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.lead-card h3 {
    font-size: 25px;
}

.lead-card > p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
}

#leadForm {
    display: grid;
    gap: 15px;
}

#leadForm label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
}

#leadForm label span {
    color: var(--muted);
    font-weight: 400;
}

#leadForm input,
#leadForm textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 12px 14px;
    outline: none;
    background: #fbfcfb;
    font-size: 14px;
    resize: vertical;
    transition: .2s;
}

#leadForm input:focus,
#leadForm textarea:focus {
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 3px rgba(22,163,74,.08);
}

.submit-btn {
    border: 0;
    width: 100%;
}

.lead-status {
    display: none;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}


/* ================= FOOTER ================= */

.footer {
    background: #0d2116;
    color: white;
    padding: 65px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 23px;
    margin: 10px 0;
}

.footer-brand p {
    color: #a8b9ae;
    font-size: 13px;
    max-width: 370px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4 {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-links a {
    color: #a8b9ae;
    font-size: 13px;
    transition: .2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #83968a;
    font-size: 11px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .brand {
        margin-left: auto;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        border: 0;
        background: var(--green-light);
        color: var(--green-dark);
        width: 43px;
        height: 43px;
        border-radius: 11px;
        font-size: 22px;
        cursor: pointer;
    }

    .mobile-nav {
        display: none;
        padding: 10px 20px 20px;
        background: white;
        border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
        display: grid;
    }

    .mobile-nav a {
        padding: 12px;
        font-weight: 700;
        border-bottom: 1px solid #f0f2f1;
    }

    .mobile-download {
        background: var(--green);
        color: white;
        text-align: center;
        border-radius: 10px;
        margin-top: 8px;
    }

    .hero-grid,
    .two-column,
    .app-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        min-height: 560px;
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: auto;
        border-top: 0;
        border-right: 2px dashed #bfe2ca;
    }

    .app-content {
        margin-inline: auto;
        text-align: center;
    }

    .app-checks {
        text-align: right;
        width: fit-content;
        margin-inline: auto;
    }

    .app-visual {
        order: -1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        height: 72px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 55px 0 65px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 490px;
        transform: scale(.88);
        margin: -25px 0;
    }

    .hero-card-main {
        width: 290px;
    }

    .floating-card-one {
        right: -4px;
    }

    .floating-card-two {
        left: -8px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid > div {
        padding: 20px 8px;
    }

    .section {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .section-content h2,
    .app-content h2,
    .contact-info h2 {
        font-size: 32px;
    }

    .visual-box {
        min-height: 300px;
        padding: 25px;
    }

    .app-visual img {
        max-width: 300px;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-link {
        width: 220px;
    }

    .lead-card {
        padding: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* =========================================================
   HERO ANIMATION
   ========================================================= */

@keyframes heroPhoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(-0.4deg);
    }
}

@keyframes heroGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes floatingCardOne {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(8px, -10px) rotate(1deg);
    }
}

@keyframes floatingCardTwo {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-7px, 8px) rotate(-1deg);
    }
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBadgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }
}

/* Main phone */
.hero-card-main {
    animation: heroPhoneFloat 5s ease-in-out infinite;
    will-change: transform;
}

/* Background glow */
.hero-glow {
    animation: heroGlowPulse 5s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Floating cards */
.floating-card-one {
    animation: floatingCardOne 4.2s ease-in-out infinite;
    will-change: transform;
}

.floating-card-two {
    animation: floatingCardTwo 4.8s ease-in-out infinite;
    animation-delay: .6s;
    will-change: transform;
}

/* Hero content entrance */
.hero-content {
    animation: heroContentReveal .8s ease-out both;
}

.hero-visual {
    animation: heroContentReveal .9s ease-out .15s both;
}

/* Small movement on the AI badge */
.hero .eyebrow {
    animation: heroBadgePulse 3s ease-in-out infinite;
}

/* Keep animations accessible */
@media (prefers-reduced-motion: reduce) {
    .hero-card-main,
    .hero-glow,
    .floating-card-one,
    .floating-card-two,
    .hero-content,
    .hero-visual,
    .hero .eyebrow {
        animation: none !important;
        transition: none !important;
    }
}



/* =========================================================
   REAL APP HERO
   ========================================================= */

.hero-phone-real {
    position: relative;
    z-index: 2;
    width: 300px;
    border-radius: 38px;
    overflow: hidden;
    background: #fff;
    border: 7px solid #17201a;
    box-shadow:
        0 35px 80px rgba(0,0,0,.18),
        0 0 0 1px rgba(255,255,255,.8);
    
    animation: heroPhoneFloat 5s ease-in-out infinite;
}

.hero-phone-real img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-glow {
    animation: heroGlowPulse 5s ease-in-out infinite;
}

.floating-card {
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-card-one {
    animation-delay: -1.2s;
}

.floating-card-two {
    animation-delay: -2.5s;
}


/* Phone floating animation */

@keyframes heroPhoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(.5deg);
    }
}


/* Background glow animation */

@keyframes heroGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* Floating information cards */

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* About real screenshot */

.real-app-screen {
    display: block;
    width: min(100%, 300px);
    max-height: 600px;
    object-fit: contain;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .hero-phone-real,
    .hero-glow,
    .floating-card {
        animation: none !important;
    }
}


/* Mobile */

@media (max-width: 768px) {

    .hero-phone-real {
        width: 260px;
        border-radius: 32px;
    }

    .floating-card-one {
        right: -5px;
        top: 80px;
    }

    .floating-card-two {
        left: -5px;
        bottom: 70px;
    }

    .real-app-screen {
        width: min(100%, 260px);
    }
}


/* =========================================================
   REAL APP SCREENSHOT - HERO
   ========================================================= */

.hero-phone-real {
    position: relative;
    z-index: 2;
    width: 300px;
    border-radius: 38px;
    overflow: hidden;
    background: #fff;
    border: 7px solid #17201a;
    box-shadow:
        0 35px 80px rgba(0,0,0,.18),
        0 0 0 1px rgba(255,255,255,.8);

    animation: heroPhoneFloat 5s ease-in-out infinite;
}

.hero-phone-real img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-glow {
    animation: heroGlowPulse 5s ease-in-out infinite;
}

.floating-card {
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-card-one {
    animation-delay: -1.2s;
}

.floating-card-two {
    animation-delay: -2.5s;
}


/* Phone floating animation */

@keyframes heroPhoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(.5deg);
    }
}


/* Glow animation */

@keyframes heroGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* Floating cards animation */

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* Mobile */

@media (max-width: 768px) {

    .hero-phone-real {
        width: 260px;
        border-radius: 32px;
    }

    .floating-card-one {
        right: -5px;
        top: 80px;
    }

    .floating-card-two {
        left: -5px;
        bottom: 70px;
    }
}


/* Respect accessibility settings */

@media (prefers-reduced-motion: reduce) {

    .hero-phone-real,
    .hero-glow,
    .floating-card {
        animation: none !important;
    }
}


/* =========================================================
   ABOUT SECTION - REAL RESULT SCREENSHOT
   ========================================================= */

@media (max-width: 768px) {

    }


/* Real Search Screenshot - Experience Section */
.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-screen {
    width: 310px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

@media (max-width: 900px) {
    .experience-screen {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .experience-screen {
        width: 250px;
    }
}


/* =========================================================
   REAL APP SCREEN — PREMIUM PHONE PRESENTATION
   ========================================================= */

.about-section .section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

/* Soft ambient glow behind phone */
/* Decorative soft background */
/* Actual application screenshot */
/* Small hover effect */
/* =========================================================
   ABOUT SECTION — BETTER BALANCE
   ========================================================= */

.about-section .two-column {
    align-items: center;
    gap: 90px;
}

.about-section .section-content {
    max-width: 650px;
}

.about-section .section-content h2 {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-section .section-content > p {
    font-size: 18px;
    line-height: 2;
    color: var(--muted);
    max-width: 620px;
}


/* =========================================================
   MOBILE
   ========================================================= */




/* =========================================================
   ABOUT SECTION - REAL APP PHONE
   ========================================================= */

.about-phone-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* soft green background glow */
.about-phone-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(22,163,74,.14) 0%,
            rgba(22,163,74,.06) 45%,
            transparent 72%
        );
    filter: blur(3px);
}

/* phone body */
.about-phone {
    position: relative;
    z-index: 2;
    width: 310px;
    height: 610px;
    padding: 10px;
    border-radius: 45px;
    background: linear-gradient(
        145deg,
        #20282d 0%,
        #111719 45%,
        #303b40 100%
    );
    box-shadow:
        0 35px 70px rgba(15,23,42,.22),
        0 10px 25px rgba(15,23,42,.12),
        inset 2px 2px 5px rgba(255,255,255,.16),
        inset -3px -3px 8px rgba(0,0,0,.45);
}

/* thin inner bezel */
.about-phone::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 42px;
    border: 1px solid rgba(255,255,255,.20);
    pointer-events: none;
}

/* actual screen */
.about-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 36px;
    background: #fff;
}

/* screenshot */
.about-phone-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* top camera / dynamic island */
.about-phone-camera {
    position: absolute;
    z-index: 5;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 25px;
    border-radius: 20px;
    background: #050708;
    box-shadow:
        inset 0 1px 3px rgba(255,255,255,.12),
        0 2px 5px rgba(0,0,0,.25);
}

/* small highlight inside camera */
.about-phone-camera::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    right: 15px;
    top: 9px;
    background: #263743;
    box-shadow: 0 0 4px rgba(100,180,255,.25);
}

/* floating information badge */
.about-phone-badge {
    position: absolute;
    z-index: 6;
    right: -45px;
    bottom: 105px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 17px;
    min-width: 175px;

    background: rgba(255,255,255,.96);
    border: 1px solid rgba(22,163,74,.12);
    border-radius: 17px;

    box-shadow:
        0 18px 40px rgba(15,23,42,.12),
        0 4px 12px rgba(15,23,42,.06);
}

.about-phone-badge > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;
    background: #eaf8ef;
    color: var(--green);
    font-size: 18px;
    font-weight: 900;
}

.about-phone-badge strong,
.about-phone-badge small {
    display: block;
}

.about-phone-badge strong {
    color: #111827;
    font-size: 13px;
    margin-bottom: 3px;
}

.about-phone-badge small {
    color: #7b8794;
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-phone-visual {
        min-height: 570px;
        margin-top: 20px;
    }

    .about-phone {
        width: 275px;
        height: 540px;
        border-radius: 40px;
    }

    .about-phone-screen {
        border-radius: 32px;
    }

    .about-phone-badge {
        right: -20px;
        bottom: 70px;
    }
}

@media (max-width: 600px) {

    .about-phone-visual {
        min-height: 500px;
    }

    .about-phone {
        width: 245px;
        height: 480px;
        border-radius: 35px;
    }

    .about-phone-screen {
        border-radius: 28px;
    }

    .about-phone-camera {
        width: 76px;
        height: 21px;
        top: 14px;
    }

    .about-phone-badge {
        right: -5px;
        bottom: 45px;
        min-width: 150px;
        padding: 10px 12px;
    }

    .about-phone-badge > span {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}


/* =========================================================
   TAYYIBATI - ABOUT SECTION REAL APP SCREEN
   ========================================================= */

.about-phone-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* subtle green glow behind phone */
.about-phone-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(22, 163, 74, 0.12) 0%,
        rgba(22, 163, 74, 0.055) 45%,
        rgba(22, 163, 74, 0) 72%
    );
}

/* actual phone */
.about-phone {
    position: relative;
    z-index: 2;

    width: 330px;
    height: 640px;

    padding: 7px;

    border-radius: 43px;

    background: #111817;

    box-shadow:
        0 35px 70px rgba(15, 23, 42, 0.20),
        0 12px 25px rgba(15, 23, 42, 0.10),
        inset 1px 1px 2px rgba(255,255,255,.20),
        inset -2px -3px 5px rgba(0,0,0,.55);
}

/* real screenshot container */
.about-phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 37px;

    background: #fff;
}

/* IMPORTANT:
   The screenshot fills the complete phone screen.
*/
.about-phone-screen img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: top center;
}

/* phone speaker / camera */
.about-phone-screen::before {
    content: "";

    position: absolute;
    z-index: 10;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    width: 92px;
    height: 25px;

    border-radius: 20px;

    background: #050706;

    box-shadow:
        0 2px 5px rgba(0,0,0,.25),
        inset 0 1px 2px rgba(255,255,255,.08);

    pointer-events: none;
}

/* floating badge */
.about-phone-badge {
    position: absolute;

    z-index: 20;

    right: -55px;
    bottom: 105px;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 185px;

    padding: 13px 16px;

    background: rgba(255,255,255,.97);

    border: 1px solid rgba(22,163,74,.10);

    border-radius: 17px;

    box-shadow:
        0 20px 45px rgba(15,23,42,.13),
        0 4px 12px rgba(15,23,42,.06);
}

.about-phone-badge > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #eaf8ef;

    color: var(--green);

    font-size: 17px;
    font-weight: 900;
}

.about-phone-badge strong,
.about-phone-badge small {
    display: block;
}

.about-phone-badge strong {
    color: #111827;
    font-size: 13px;
    margin-bottom: 3px;
}

.about-phone-badge small {
    color: #7b8794;
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-phone-visual {
        min-height: 590px;
    }

    .about-phone {
        width: 290px;
        height: 560px;
    }

    .about-phone-badge {
        right: -25px;
        bottom: 75px;
    }
}

@media (max-width: 600px) {

    .about-phone-visual {
        min-height: 510px;
    }

    .about-phone {
        width: 250px;
        height: 485px;
        border-radius: 36px;
    }

    .about-phone-screen {
        border-radius: 30px;
    }

    .about-phone-badge {
        right: -10px;
        bottom: 50px;
        min-width: 155px;
        padding: 10px 12px;
    }

    .about-phone-badge > span {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}

/* =========================================================
   TAYYIBATI LANDING PAGE - FINAL LAYOUT OVERRIDES
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL SECTION BALANCE
   --------------------------------------------------------- */

.section {
    padding: 85px 0;
}

.section .container {
    max-width: 1180px;
}


/* ---------------------------------------------------------
   ABOUT SECTION
   Real application screenshot + text
   --------------------------------------------------------- */

.about-section .two-column {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.about-section .section-visual {
    min-height: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .visual-box {
    width: 100%;
    min-height: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            rgba(22,163,74,.10),
            rgba(22,163,74,.035) 45%,
            transparent 72%
        );
    border-radius: 40px;
}

.about-section .real-app-screen {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    max-height: 570px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow:
        0 25px 60px rgba(15,23,42,.14),
        0 8px 20px rgba(15,23,42,.06);
}

.about-section .section-content {
    max-width: 650px;
}

.about-section .section-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.25;
    margin-bottom: 25px;
}

.about-section .section-content > p {
    font-size: 17px;
    line-height: 2;
    max-width: 620px;
}


/* ---------------------------------------------------------
   FEATURES
   --------------------------------------------------------- */

.features-grid {
    gap: 20px;
}

.feature-card {
    min-height: 190px;
    padding: 28px;
}

.feature-card h3 {
    font-size: 18px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------- */

.steps {
    gap: 35px;
}

.step-icon {
    width: 78px;
    height: 78px;
}

.step h3 {
    font-size: 18px;
}

.step p {
    font-size: 14px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   EXPERIENCE / APP SECTION
   Real SEARCH screenshot
   --------------------------------------------------------- */

.app-grid {
    align-items: center;
    gap: 80px;
}

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

.app-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.25;
}

.app-content p {
    font-size: 17px;
    line-height: 2;
}

.app-checks {
    margin: 28px 0;
    gap: 13px;
}

.app-checks div {
    font-size: 15px;
}

.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.app-visual img,
.experience-screen {
    display: block;
    width: 270px;
    max-width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 32px;
    box-shadow:
        0 28px 65px rgba(15,23,42,.16),
        0 8px 20px rgba(15,23,42,.06);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta-section {
    padding: 85px 0;
}

.cta-content h2 {
    font-size: clamp(34px, 4vw, 52px);
}


/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.faq-list {
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    margin-bottom: 12px;
}


/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.contact-grid {
    gap: 70px;
}

.contact-info h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.lead-card {
    max-width: 500px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .section {
        padding: 70px 0;
    }

    .about-section .two-column {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-section .section-content {
        max-width: 700px;
        margin-inline: auto;
        text-align: center;
    }

    .about-section .section-content > p {
        margin-inline: auto;
    }

    .about-section .section-visual {
        order: -1;
    }

    .about-section .real-app-screen {
        width: 290px;
        max-height: 560px;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .app-content {
        margin-inline: auto;
        text-align: center;
    }

    .app-checks {
        width: fit-content;
        margin-inline: auto;
        text-align: right;
    }

    .app-visual {
        order: -1;
    }

    .app-visual img,
    .experience-screen {
        width: 280px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 60px 0;
    }

    .about-section .two-column {
        gap: 35px;
    }

    .about-section .visual-box {
        padding: 15px;
        border-radius: 30px;
    }

    .about-section .real-app-screen {
        width: 255px;
        max-height: 500px;
        border-radius: 26px;
    }

    .about-section .section-content h2,
    .app-content h2 {
        font-size: 34px;
    }

    .about-section .section-content > p,
    .app-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .feature-card {
        min-height: 0;
        padding: 22px;
    }

    .features-grid {
        gap: 14px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .app-visual img,
    .experience-screen {
        width: 250px;
        max-height: 500px;
    }

    .app-checks {
        font-size: 14px;
    }

    .contact-grid {
        gap: 40px;
    }
}

/* =========================================================
   FINAL FIX - APP VISUAL SCREEN
   ========================================================= */

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.app-visual img {
    display: block;
    width: 100%;
    max-width: 270px;
    height: auto;
    max-height: 480px;
    object-fit: contain;
}

/* Desktop */
@media (min-width: 769px) {
    .app-visual img {
        width: 270px;
        max-width: 270px;
        max-height: 480px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .app-visual img {
        width: 230px;
        max-width: 230px;
        max-height: 430px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .app-visual img {
        width: 210px;
        max-width: 210px;
        max-height: 400px;
    }
}



/* =========================================================
   FINAL FIX — ABOUT SECTION
   ========================================================= */

.about-section {
    padding: 110px 0;
}

.about-section .two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

/* Image area */
.about-section .section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}

/* Clean screenshot container */
.about-section .visual-box {
    position: relative;
    width: 360px;
    height: 540px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        145deg,
        #f4fbf7 0%,
        #ffffff 65%
    );

    border: 1px solid #e1eee6;
    border-radius: 42px;

    box-shadow:
        0 25px 70px rgba(22, 163, 74, 0.10),
        0 10px 30px rgba(0, 0, 0, 0.06);

    overflow: hidden;
}

/* Remove old decorative layers */
.about-section .visual-box::before,
.about-section .visual-box::after {
    display: none !important;
    content: none !important;
}

/* REAL APP SCREEN */
.about-section .real-app-screen {
    display: block !important;

    width: 270px !important;
    max-width: 270px !important;

    height: 480px !important;
    max-height: 480px !important;

    object-fit: contain !important;

    margin: 0 auto !important;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);

    transform: none !important;
}

/* About text */
.about-section .section-content {
    max-width: 650px;
}

.about-section .section-content h2 {
    margin-bottom: 28px;
}

.about-section .section-content p {
    line-height: 2;
    margin-bottom: 30px;
}

/* Mobile */
@media (max-width: 900px) {

    .about-section {
        padding: 80px 0;
    }

    .about-section .two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-section .section-visual {
        order: 1;
        min-height: auto;
    }

    .about-section .section-content {
        order: 2;
        text-align: center;
    }

    .about-section .visual-box {
        width: 320px;
        height: 520px;
    }

    .about-section .real-app-screen {
        width: 250px !important;
        max-width: 250px !important;
        height: 460px !important;
        max-height: 460px !important;
    }
}

@media (max-width: 480px) {

    .about-section .visual-box {
        width: 290px;
        height: 500px;
        border-radius: 34px;
    }

    .about-section .real-app-screen {
        width: 235px !important;
        max-width: 235px !important;
        height: 440px !important;
        max-height: 440px !important;
    }
}



/* =========================================================
   ABOUT SECTION — REAL SEARCH SCREEN
   ========================================================= */

.about-section .section-visual.about-phone-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
}

/* Hide the old decorative phone effects */
.about-section .about-phone-glow {
    display: none !important;
}

.about-section .about-phone {
    position: relative !important;
    width: 300px !important;
    height: 520px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    background: #f5faf7 !important;
    border: 1px solid #e1eee6 !important;
    border-radius: 42px !important;

    box-shadow:
        0 25px 70px rgba(22, 163, 74, 0.10),
        0 12px 35px rgba(0, 0, 0, 0.07) !important;

    overflow: hidden !important;

    padding: 20px !important;
}

/* Remove old phone frame */
.about-section .about-phone::before,
.about-section .about-phone::after {
    display: none !important;
    content: none !important;
}

/* Screenshot wrapper */
.about-section .about-phone-screen {
    position: relative !important;

    width: 270px !important;
    height: 480px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    overflow: hidden !important;

    border-radius: 28px !important;

    background: white !important;
}

/* REAL SEARCH SCREEN */
.about-section .about-phone-screen img {
    display: block !important;

    width: 270px !important;
    max-width: 270px !important;

    height: 480px !important;
    max-height: 480px !important;

    object-fit: contain !important;

    margin: 0 !important;

    border-radius: 28px !important;

    box-shadow: none !important;

    transform: none !important;
}


/* Desktop */
@media (min-width: 901px) {

    .about-section .section-visual.about-phone-visual {
        transform: translateY(0);
    }

    .about-section .about-phone {
        width: 300px !important;
        height: 520px !important;
    }

}


/* Tablet */
@media (max-width: 900px) {

    .about-section .section-visual.about-phone-visual {
        min-height: auto;
    }

    .about-section .about-phone {
        width: 290px !important;
        height: 500px !important;
    }

    .about-section .about-phone-screen {
        width: 250px !important;
        height: 460px !important;
    }

    .about-section .about-phone-screen img {
        width: 250px !important;
        max-width: 250px !important;

        height: 460px !important;
        max-height: 460px !important;
    }

}


/* Mobile */
@media (max-width: 480px) {

    .about-section .about-phone {
        width: 270px !important;
        height: 480px !important;
        border-radius: 36px !important;
    }

    .about-section .about-phone-screen {
        width: 235px !important;
        height: 440px !important;
    }

    .about-section .about-phone-screen img {
        width: 235px !important;
        max-width: 235px !important;

        height: 440px !important;
        max-height: 440px !important;
    }

}



/* =========================================================
   FINAL ABOUT SECTION
   Real Search Screenshot
   ========================================================= */

.about-section {
    position: relative;
}

.about-section .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* ---------------------------------------------------------
   SCREENSHOT SIDE
   --------------------------------------------------------- */

.about-section .about-phone-visual {
    position: relative;

    min-height: 560px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: visible;
}


/* Soft background */
.about-section .about-phone-visual::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,163,74,.12) 0%,
            rgba(22,163,74,.055) 45%,
            transparent 72%
        );

    z-index: 0;
}


/* Hide old glow */
.about-section .about-phone-glow {
    display: none !important;
}


/* ---------------------------------------------------------
   SCREENSHOT CONTAINER
   --------------------------------------------------------- */

.about-section .about-phone {
    position: relative;

    z-index: 2;

    width: 300px;
    height: 520px;

    padding: 0;

    display: block;

    background: #ffffff;

    border: 1px solid #e5eee8;

    border-radius: 34px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(15,23,42,.16),
        0 8px 25px rgba(15,23,42,.07);
}


/* Remove old phone frame */
.about-section .about-phone::before,
.about-section .about-phone::after {
    display: none !important;
    content: none !important;
}


/* ---------------------------------------------------------
   REAL APP SCREEN
   --------------------------------------------------------- */

.about-section .about-phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border-radius: 34px;

    background: #ffffff;
}


/* Remove old dynamic-island */
.about-section .about-phone-screen::before,
.about-section .about-phone-screen::after {
    display: none !important;
    content: none !important;
}


/* Actual screenshot */
.about-section .about-phone-screen img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center top !important;

    border: 0 !important;
    border-radius: 34px !important;

    box-shadow: none !important;

    transform: none !important;
}


/* ---------------------------------------------------------
   BADGE
   --------------------------------------------------------- */

.about-section .about-phone-badge {
    position: absolute;

    z-index: 5;

    right: -45px;
    bottom: 85px;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 175px;

    padding: 13px 16px;

    background: rgba(255,255,255,.98);

    border: 1px solid rgba(22,163,74,.10);

    border-radius: 17px;

    box-shadow:
        0 18px 40px rgba(15,23,42,.12),
        0 5px 14px rgba(15,23,42,.06);
}

.about-section .about-phone-badge > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #eaf8ef;

    color: var(--green);

    font-size: 17px;
    font-weight: 900;
}

.about-section .about-phone-badge strong {
    display: block;

    color: #111827;

    font-size: 13px;

    margin-bottom: 3px;
}

.about-section .about-phone-badge small {
    display: block;

    color: #7b8794;

    font-size: 10px;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.about-section .section-content {
    max-width: 620px;
}

.about-section .section-content h2 {
    margin-top: 12px;
    margin-bottom: 24px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.25;
}

.about-section .section-content > p {
    max-width: 580px;

    color: var(--muted);

    font-size: 18px;

    line-height: 2;

    margin-bottom: 28px;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .about-section .two-column {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-section .about-phone-visual {
        order: 1;

        min-height: 530px;
    }

    .about-section .section-content {
        order: 2;

        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }

    .about-section .section-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-phone {
        width: 280px;
        height: 500px;
    }

    .about-section .about-phone-screen,
    .about-section .about-phone-screen img {
        border-radius: 31px !important;
    }

    .about-section .about-phone-badge {
        right: -15px;
        bottom: 65px;
    }
}


@media (max-width: 600px) {

    .about-section .about-phone-visual {
        min-height: 490px;
    }

    .about-section .about-phone {
        width: 250px;
        height: 450px;
    }

    .about-section .about-phone-screen,
    .about-section .about-phone-screen img {
        border-radius: 28px !important;
    }

    .about-section .about-phone-badge {
        right: -5px;
        bottom: 45px;

        min-width: 145px;

        padding: 10px 12px;
    }

    .about-section .about-phone-badge > span {
        width: 32px;
        height: 32px;

        flex-basis: 32px;
    }

    .about-section .section-content h2 {
        font-size: 36px;
    }

    .about-section .section-content > p {
        font-size: 16px;
    }
}




/* =========================================================
   FINAL ABOUT SECTION
   Real Search Screenshot
   ========================================================= */

.about-section .two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 90px;
}


/* LEFT — PHONE */

.about-phone-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}


/* Soft green glow */

.about-phone-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(22,163,74,.15) 0%,
            rgba(22,163,74,.07) 45%,
            transparent 72%
        );
    filter: blur(3px);
    pointer-events: none;
}


/* Phone */

.about-phone {
    position: relative;
    z-index: 2;

    width: 300px;
    height: 610px;

    padding: 9px;

    border-radius: 44px;

    background:
        linear-gradient(
            145deg,
            #273137 0%,
            #111719 45%,
            #303a3f 100%
        );

    box-shadow:
        0 40px 80px rgba(15,23,42,.22),
        0 12px 30px rgba(15,23,42,.12),
        inset 2px 2px 5px rgba(255,255,255,.15),
        inset -3px -3px 8px rgba(0,0,0,.45);
}


/* Inner bezel */

.about-phone::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,.22);
    pointer-events: none;
}


/* Screenshot container */

.about-phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 36px;

    background: #fff;
}


/* REAL SCREENSHOT */

.about-phone-screen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
}


/* Dynamic island */

.about-phone-screen::before {
    content: "";

    position: absolute;

    z-index: 10;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    width: 90px;
    height: 24px;

    border-radius: 20px;

    background: #050708;

    box-shadow:
        inset 0 1px 3px rgba(255,255,255,.12),
        0 2px 5px rgba(0,0,0,.25);

    pointer-events: none;
}


/* Floating badge */

.about-phone-badge {
    position: absolute;

    z-index: 20;

    right: -38px;
    bottom: 105px;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 175px;

    padding: 13px 17px;

    background: rgba(255,255,255,.97);

    border: 1px solid rgba(22,163,74,.12);

    border-radius: 17px;

    box-shadow:
        0 18px 40px rgba(15,23,42,.12),
        0 4px 12px rgba(15,23,42,.06);
}


.about-phone-badge > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #eaf8ef;
    color: var(--green);

    font-size: 18px;
    font-weight: 900;
}


.about-phone-badge strong,
.about-phone-badge small {
    display: block;
}


.about-phone-badge strong {
    color: #111827;
    font-size: 13px;
    margin-bottom: 3px;
}


.about-phone-badge small {
    color: #7b8794;
    font-size: 10px;
}


/* RIGHT CONTENT */

.about-section .section-content {
    max-width: 650px;
}


.about-section .section-content h2 {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.2;
    margin-bottom: 28px;
}


.about-section .section-content > p {
    font-size: 18px;
    line-height: 2;
    color: var(--muted);
    max-width: 620px;
}


/* About list */

.about-section .about-list {
    margin-top: 30px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-section .two-column {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-section .section-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .about-phone-visual {
        order: 2;
        min-height: 570px;
    }

    .about-phone {
        width: 275px;
        height: 555px;
    }

    .about-phone-badge {
        right: -25px;
    }
}


@media (max-width: 600px) {

    .about-phone-visual {
        min-height: 540px;
    }

    .about-phone {
        width: 250px;
        height: 510px;
        border-radius: 38px;
    }

    .about-phone-screen {
        border-radius: 31px;
    }

    .about-phone-badge {
        right: -10px;
        bottom: 75px;
        min-width: 155px;
        padding: 10px 12px;
    }

    .about-phone-badge > span {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .about-section .section-content h2 {
        font-size: 38px;
    }
}

