/* =========================================================
   OKMAM — COMPLETE HOMEPAGE CSS
   Desktop + Mobile
   ========================================================= */

:root{
    --ok-ink:#17152d;
    --ok-purple:#5b16a8;
    --ok-purple-dark:#251047;
    --ok-purple-mid:#7018b5;
    --ok-pink:#f31372;
    --ok-pink-light:#ff4c9b;
    --ok-bg:#f7f6fb;
    --ok-white:#fff;
    --ok-muted:#6f7482;
    --ok-line:#e5e3eb;
    --ok-card:#ffffff;
    --ok-shadow:0 14px 40px rgba(30,15,75,.08);
    --ok-radius:22px;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--ok-bg);
    color:var(--ok-ink);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

a{
    color:inherit;
}

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


/* =========================================================
   GLOBAL WRAPPER
   ========================================================= */

.ok-home-wrap{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
}


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

.ok-home-header{
    height:78px;
    background:#fff;
    border-bottom:1px solid #eceaf0;
    display:flex;
    align-items:center;
    position:relative;
    z-index:20;
}

.ok-home-header .ok-home-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.ok-home-logo{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    color:var(--ok-ink);
    font-size:30px;
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
}

.ok-home-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.ok-home-nav a{
    color:var(--ok-ink);
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:.2s ease;
}

.ok-home-nav a:hover{
    color:var(--ok-pink);
}


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

.ok-home-hero{
    position:relative;
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(244,56,159,.42) 0,
            rgba(244,56,159,.18) 20%,
            transparent 48%
        ),
        radial-gradient(
            circle at 15% 100%,
            rgba(48,20,140,.72) 0,
            transparent 48%
        ),
        linear-gradient(
            115deg,
            #25104b 0%,
            #51149b 48%,
            #941da5 100%
        );
}

.ok-home-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-150px;
    bottom:-220px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    pointer-events:none;
}

.ok-home-hero > .ok-home-wrap{
    min-height:400px;
    padding:48px 0 46px;
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr);
    gap:46px;
    align-items:center;
    position:relative;
    z-index:1;
}

.ok-home-hero-copy{
    min-width:0;
}

.ok-home-eyebrow{
    margin:0 0 18px;
    color:rgba(255,255,255,.72);
    font-size:11px;
    line-height:1.5;
    font-weight:900;
    letter-spacing:2.4px;
    text-transform:uppercase;
}

.ok-home-hero h1{
    margin:0;
    max-width:680px;
    font-size:clamp(50px,5.5vw,76px);
    line-height:.94;
    letter-spacing:-4px;
    font-weight:950;
}

.ok-home-hero h1 em{
    color:#ff4b9b;
    font-family:Georgia,"Times New Roman",serif;
    font-weight:400;
    font-style:italic;
    letter-spacing:-3px;
}

.ok-home-lead{
    max-width:560px;
    margin:25px 0 27px;
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.55;
}

.ok-home-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.ok-home-primary,
.ok-home-secondary{
    min-height:40px;
    padding:0 19px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:12px;
    font-weight:850;
    transition:.2s ease;
}

.ok-home-primary{
    background:var(--ok-pink);
    color:#fff;
    box-shadow:0 8px 20px rgba(243,19,114,.25);
}

.ok-home-primary:hover{
    background:#ff2b83;
    transform:translateY(-2px);
}

.ok-home-secondary{
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.06);
}

.ok-home-secondary:hover{
    background:#fff;
    color:var(--ok-purple-dark);
}


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

.ok-home-hero-panel{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.ok-home-panel-card{
    min-height:228px;
    padding:19px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 12px 30px rgba(20,5,60,.12);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    overflow:hidden;
    position:relative;
}

.ok-home-panel-card::after{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    right:-45px;
    bottom:-65px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
}

.ok-home-panel-card .ok-panel-icon{
    width:43px;
    height:43px;
    margin-bottom:auto;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:21px;
    position:relative;
    z-index:1;
}

.ok-home-panel-card strong{
    display:block;
    max-width:160px;
    margin:0 0 8px;
    color:#fff;
    font-size:15px;
    line-height:1.15;
    font-weight:900;
    position:relative;
    z-index:1;
}

.ok-home-panel-card p{
    max-width:175px;
    margin:0 0 14px;
    color:rgba(255,255,255,.68);
    font-size:11px;
    line-height:1.45;
    position:relative;
    z-index:1;
}

.ok-home-panel-card a{
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-decoration:none;
    position:relative;
    z-index:1;
}

.ok-home-panel-card a:hover{
    color:#ff4c9b;
}


/* =========================================================
   SEARCH SECTION
   ========================================================= */

.ok-home-search-section{
    background:var(--ok-bg);
    padding:50px 0 55px;
}

.ok-home-search-box{
    background:#fff;
    border:1px solid var(--ok-line);
    border-radius:24px;
    padding:30px 34px 27px;
    box-shadow:var(--ok-shadow);
}

.ok-search-heading{
    margin-bottom:22px;
}

.ok-search-heading .ok-home-eyebrow{
    margin-bottom:14px;
    color:#747987;
    font-size:11px;
    letter-spacing:2px;
}

.ok-search-heading h2{
    margin:0;
    max-width:560px;
    color:var(--ok-ink);
    font-size:36px;
    line-height:1;
    letter-spacing:-2px;
    font-weight:950;
}

.ok-search-heading > div > p:last-child{
    margin:12px 0 0;
    color:#777d89;
    font-size:14px;
    line-height:1.5;
}

.ok-search-form{
    display:grid;
    grid-template-columns:minmax(230px,1.5fr) minmax(150px,1fr) minmax(120px,.8fr) 90px;
    gap:8px;
    align-items:stretch;
}

.ok-search-input,
.ok-search-select{
    min-width:0;
}

.ok-search-input input,
.ok-search-select select{
    width:100%;
    height:42px;
    padding:0 13px;
    border:1px solid #dddce4;
    border-radius:9px;
    background:#fff;
    color:var(--ok-ink);
    outline:none;
    font:inherit;
    font-size:12px;
}

.ok-search-input input::placeholder{
    color:#9ba0aa;
}

.ok-search-input input:focus,
.ok-search-select select:focus{
    border-color:#a25bd0;
    box-shadow:0 0 0 3px rgba(162,91,208,.10);
}

.ok-search-select select{
    appearance:auto;
    cursor:pointer;
}

.ok-search-form > button{
    min-height:42px;
    border:0;
    border-radius:9px;
    background:var(--ok-pink);
    color:#fff;
    cursor:pointer;
    font:inherit;
    font-size:12px;
    font-weight:900;
    transition:.2s ease;
}

.ok-search-form > button:hover{
    background:#ff2c83;
    transform:translateY(-1px);
}


/* =========================================================
   POPULAR SEARCHES
   ========================================================= */

.ok-popular{
    display:flex;
    align-items:center;
    gap:7px;
    flex-wrap:wrap;
    margin-top:13px;
}

.ok-popular > span{
    color:#777d88;
    font-size:11px;
    font-weight:850;
    margin-right:2px;
}

.ok-popular a{
    display:inline-flex;
    align-items:center;
    min-height:25px;
    padding:0 10px;
    border:1px solid #e3e1e8;
    border-radius:999px;
    background:#f9f8fb;
    color:#555b69;
    text-decoration:none;
    font-size:10px;
    font-weight:750;
    transition:.2s ease;
}

.ok-popular a:hover{
    border-color:#e9b0cb;
    background:#fff0f6;
    color:var(--ok-pink);
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.ok-home-section{
    padding:60px 0;
    background:var(--ok-bg);
}

.ok-home-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:27px;
}

.ok-home-section-head > div:first-child{
    min-width:260px;
}

.ok-home-section-head .ok-home-eyebrow{
    color:#7a7f8b;
    margin-bottom:12px;
}

.ok-home-section-head h2{
    margin:0;
    color:var(--ok-ink);
    font-size:34px;
    line-height:.98;
    letter-spacing:-2px;
    font-weight:950;
}

.ok-home-section-head h2 em{
    color:#e73583;
    font-family:Georgia,"Times New Roman",serif;
    font-weight:400;
    font-style:italic;
}

.ok-home-section-head > p{
    max-width:480px;
    margin:0;
    color:#777c88;
    font-size:13px;
    line-height:1.5;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.ok-home-categories{
    padding-top:20px;
}

.ok-home-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.ok-home-category{
    min-height:112px;
    padding:17px;
    border:1px solid #e6e4ea;
    border-radius:16px;
    background:#fff;
    box-shadow:0 5px 18px rgba(25,15,55,.035);
    text-decoration:none;
    display:flex;
    flex-direction:column;
    transition:.2s ease;
}

.ok-home-category:hover{
    transform:translateY(-3px);
    border-color:#e7b4cf;
    box-shadow:0 12px 25px rgba(70,20,100,.08);
}

.ok-home-category > span{
    width:28px;
    height:28px;
    margin-bottom:auto;
    border-radius:8px;
    background:#f2e9ff;
    color:#7c32b9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:900;
}

.ok-home-category:nth-child(2n) > span{
    background:#fff0f7;
    color:#df367f;
}

.ok-home-category strong{
    display:block;
    margin-top:15px;
    color:var(--ok-ink);
    font-size:12px;
    line-height:1.2;
    font-weight:900;
}

.ok-home-category small{
    display:block;
    margin-top:5px;
    color:#9699a3;
    font-size:9px;
    line-height:1.3;
}

.ok-home-category-all{
    background:
        linear-gradient(
            135deg,
            #fff,
            #fbf1ff
        );
}


/* =========================================================
   BUSINESS DISCOVERY
   ========================================================= */

.ok-home-businesses{
    padding-top:10px;
}

.ok-home-view-link{
    color:var(--ok-purple);
    text-decoration:none;
    font-size:12px;
    font-weight:850;
}

.ok-home-view-link:hover{
    color:var(--ok-pink);
}

.ok-home-business-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:13px;
}

.ok-home-business-card{
    min-height:165px;
    padding:17px;
    border:1px solid var(--ok-line);
    border-radius:17px;
    background:#fff;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(20,15,50,.04);
    transition:.2s ease;
}

.ok-home-business-card:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(30,15,70,.09);
}

.ok-business-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    margin-bottom:34px;
}

.ok-business-top span{
    color:#7a32b5;
    font-size:9px;
    font-weight:850;
    text-transform:uppercase;
}

.ok-business-content h3{
    margin:0 0 7px;
    color:var(--ok-ink);
    font-size:15px;
    line-height:1.2;
    font-weight:900;
}

.ok-business-content p{
    margin:0;
    color:#858a95;
    font-size:11px;
}

.ok-home-empty{
    padding:30px;
    border:1px dashed #d7d4df;
    border-radius:18px;
    background:#fff;
    text-align:center;
}

.ok-home-empty h3{
    margin:0 0 8px;
    font-size:20px;
}

.ok-home-empty p{
    margin:0 0 18px;
    color:#777d88;
}


/* =========================================================
   TWO PATHS / GROWTH
   ========================================================= */

.ok-home-growth{
    padding-top:40px;
}

.ok-growth-head{
    margin-bottom:25px;
}

.ok-growth-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.ok-growth-card{
    min-height:225px;
    padding:25px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    color:#fff;
}

.ok-growth-card::after{
    content:"";
    position:absolute;
    width:190px;
    height:190px;
    right:-70px;
    bottom:-100px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.ok-growth-business{
    background:linear-gradient(135deg,#381276,#7419a8);
}

.ok-growth-ideas{
    background:linear-gradient(135deg,#731a9c,#b11a92);
}

.ok-growth-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:11px;
    background:rgba(255,255,255,.14);
    font-size:11px;
    font-weight:900;
}

.ok-growth-card h3{
    margin:30px 0 9px;
    font-size:20px;
    line-height:1.15;
    font-weight:900;
}

.ok-growth-card p{
    max-width:430px;
    margin:0 0 18px;
    color:rgba(255,255,255,.75);
    font-size:12px;
    line-height:1.5;
}

.ok-growth-card a{
    color:#fff;
    text-decoration:none;
    font-size:11px;
    font-weight:900;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.ok-home-how{
    padding-top:45px;
}

.ok-how-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.ok-how-grid > div{
    padding:22px;
    min-height:150px;
    border:1px solid var(--ok-line);
    border-radius:17px;
    background:#fff;
}

.ok-how-grid span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:10px;
    background:#f1e7ff;
    color:#7131ad;
    font-size:10px;
    font-weight:900;
}

.ok-how-grid > div:nth-child(2) span{
    background:#fff0f7;
    color:#df327c;
}

.ok-how-grid h3{
    margin:18px 0 7px;
    font-size:15px;
    font-weight:900;
}

.ok-how-grid p{
    margin:0;
    color:#808591;
    font-size:11px;
    line-height:1.45;
}


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

.ok-home-trust{
    padding:35px 0;
}

.ok-trust-inner{
    padding:28px 35px;
    border:1px solid #e4e1e9;
    border-radius:18px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.ok-trust-inner > div:first-child{
    flex:0 0 40%;
}

.ok-trust-inner .ok-home-eyebrow{
    color:#7b808c;
    margin-bottom:10px;
}

.ok-trust-inner h2{
    margin:0;
    font-size:25px;
    line-height:1.05;
    letter-spacing:-1px;
}

.ok-trust-inner h2 em{
    color:#e83583;
    font-family:Georgia,"Times New Roman",serif;
    font-style:italic;
    font-weight:400;
}

.ok-trust-inner > p{
    flex:1;
    margin:0;
    color:#777c88;
    font-size:11px;
    line-height:1.6;
}


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

.ok-home-final{
    padding:35px 0 70px;
}

.ok-home-final > .ok-home-wrap{
    padding:48px;
    border-radius:24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255,75,155,.35),
            transparent 35%
        ),
        linear-gradient(110deg,#27104e,#7116a7,#991c9d);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.ok-home-final .ok-home-eyebrow{
    color:rgba(255,255,255,.7);
}

.ok-home-final h2{
    max-width:600px;
    margin:0;
    font-size:38px;
    line-height:1;
    letter-spacing:-2px;
    font-weight:950;
}

.ok-home-final h2 em{
    color:#ff4c9b;
    font-family:Georgia,"Times New Roman",serif;
    font-style:italic;
    font-weight:400;
}

.ok-home-final p{
    max-width:480px;
    margin:15px 0 22px;
    color:rgba(255,255,255,.75);
    font-size:13px;
    line-height:1.5;
}


/* =========================================================
   EXTRA BUTTON / LINK SAFETY
   ========================================================= */

.ok-home-actions a{
    white-space:nowrap;
}

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


/* =========================================================
   DESKTOP — LARGE
   ========================================================= */

@media(min-width:1200px){

    .ok-home-hero > .ok-home-wrap{
        min-height:420px;
    }

    .ok-home-hero h1{
        font-size:72px;
    }

    .ok-home-panel-card{
        min-height:235px;
    }
}


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

@media(max-width:900px){

    .ok-home-wrap{
        width:min(100% - 36px,720px);
    }

    .ok-home-hero > .ok-home-wrap{
        grid-template-columns:1fr;
        gap:28px;
    }

    .ok-home-hero-copy{
        max-width:680px;
    }

    .ok-home-hero-panel{
        max-width:620px;
    }

    .ok-search-form{
        grid-template-columns:1fr 1fr;
    }

    .ok-search-input{
        grid-column:1 / -1;
    }

    .ok-search-form > button{
        width:100%;
    }

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

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

    .ok-home-section-head{
        align-items:flex-start;
        flex-direction:column;
        gap:15px;
    }
}


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

@media(max-width:600px){

    body{
        background:var(--ok-bg);
    }

    .ok-home-wrap{
        width:calc(100% - 28px);
    }

    /* HEADER */

    .ok-home-header{
        height:68px;
    }

    .ok-home-header .ok-home-wrap{
        width:calc(100% - 28px);
    }

    .ok-home-logo{
        font-size:25px;
        letter-spacing:-1.7px;
    }

    .ok-home-nav{
        gap:17px;
    }

    .ok-home-nav a{
        font-size:13px;
    }


    /* HERO */

    .ok-home-hero > .ok-home-wrap{
        width:calc(100% - 28px);
        min-height:auto;
        padding:52px 0 36px;
        display:block;
    }

    .ok-home-eyebrow{
        margin-bottom:17px;
        font-size:10px;
        letter-spacing:2px;
    }

    .ok-home-hero h1{
        max-width:none;
        font-size:clamp(46px,13vw,60px);
        line-height:.95;
        letter-spacing:-3px;
    }

    .ok-home-hero h1 em{
        letter-spacing:-2px;
    }

    .ok-home-lead{
        max-width:none;
        margin:25px 0 27px;
        font-size:16px;
        line-height:1.6;
    }

    .ok-home-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:9px;
    }

    .ok-home-primary,
    .ok-home-secondary{
        width:100%;
        min-height:54px;
        border-radius:12px;
        font-size:14px;
    }


    /* HERO CARDS */

    .ok-home-hero-panel{
        margin-top:28px;
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .ok-home-panel-card{
        min-height:205px;
        padding:17px;
        border-radius:17px;
    }

    .ok-home-panel-card .ok-panel-icon{
        width:43px;
        height:43px;
    }

    .ok-home-panel-card strong{
        font-size:16px;
    }

    .ok-home-panel-card p{
        font-size:11px;
    }

    .ok-home-panel-card a{
        font-size:11px;
    }


    /* SEARCH */

    .ok-home-search-section{
        padding:40px 0 42px;
    }

    .ok-home-search-box{
        padding:30px 22px 27px;
        border-radius:25px;
    }

    .ok-search-heading{
        margin-bottom:24px;
    }

    .ok-search-heading .ok-home-eyebrow{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:18px;
    }

    .ok-search-heading h2{
        font-size:39px;
        line-height:.98;
        letter-spacing:-2.5px;
    }

    .ok-search-heading > div > p:last-child{
        margin-top:17px;
        font-size:15px;
        line-height:1.65;
    }

    .ok-search-form{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .ok-search-input input,
    .ok-search-select select{
        height:72px;
        padding:0 30px;
        border-radius:17px;
        font-size:16px;
        border-color:#dddde4;
    }

    .ok-search-form > button{
        height:72px;
        min-height:72px;
        border-radius:17px;
        font-size:16px;
    }

    .ok-popular{
        display:flex;
        gap:8px;
        margin-top:28px;
    }

    .ok-popular > span{
        width:100%;
        margin-bottom:1px;
        font-size:14px;
        font-weight:850;
    }

    .ok-popular a{
        min-height:40px;
        padding:0 17px;
        font-size:12px;
        border-radius:999px;
        background:#f9f8fb;
    }


    /* GENERAL SECTIONS */

    .ok-home-section{
        padding:45px 0;
    }

    .ok-home-section-head{
        margin-bottom:23px;
        gap:17px;
    }

    .ok-home-section-head h2{
        font-size:34px;
        line-height:1;
    }

    .ok-home-section-head > p{
        font-size:12px;
    }


    /* CATEGORIES */

    .ok-home-categories{
        padding-top:30px;
    }

    .ok-home-category-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .ok-home-category{
        min-height:130px;
        padding:16px;
        border-radius:16px;
    }

    .ok-home-category strong{
        font-size:12px;
    }

    .ok-home-category small{
        font-size:9px;
    }


    /* BUSINESS */

    .ok-home-business-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .ok-home-business-card{
        min-height:155px;
        padding:15px;
        border-radius:15px;
    }

    .ok-business-top{
        margin-bottom:25px;
    }

    .ok-business-content h3{
        font-size:13px;
    }

    .ok-business-content p{
        font-size:10px;
    }


    /* GROWTH */

    .ok-home-growth{
        padding-top:25px;
    }

    .ok-growth-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .ok-growth-card{
        min-height:220px;
        padding:17px;
        border-radius:17px;
    }

    .ok-growth-number{
        width:34px;
        height:34px;
        border-radius:10px;
    }

    .ok-growth-card h3{
        margin-top:28px;
        font-size:16px;
    }

    .ok-growth-card p{
        font-size:10px;
    }


    /* HOW */

    .ok-home-how{
        padding-top:25px;
    }

    .ok-how-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .ok-how-grid > div{
        min-height:130px;
    }


    /* TRUST */

    .ok-home-trust{
        padding:25px 0;
    }

    .ok-trust-inner{
        padding:25px 21px;
        border-radius:18px;
        display:block;
    }

    .ok-trust-inner > div:first-child{
        margin-bottom:18px;
    }

    .ok-trust-inner h2{
        font-size:25px;
    }

    .ok-trust-inner > p{
        font-size:11px;
        line-height:1.6;
    }


    /* FINAL CTA */

    .ok-home-final{
        padding:25px 0 45px;
    }

    .ok-home-final > .ok-home-wrap{
        width:calc(100% - 28px);
        padding:35px 24px;
        border-radius:22px;
    }

    .ok-home-final h2{
        font-size:35px;
        line-height:1;
        letter-spacing:-2px;
    }

    .ok-home-final p{
        font-size:12px;
        line-height:1.6;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media(max-width:430px){

    .ok-home-wrap{
        width:calc(100% - 28px);
    }

    .ok-home-logo{
        font-size:23px;
    }

    .ok-home-nav{
        gap:12px;
    }

    .ok-home-nav a{
        font-size:12px;
    }

    .ok-home-hero > .ok-home-wrap{
        padding-top:43px;
    }

    .ok-home-hero h1{
        font-size:45px;
        letter-spacing:-2.6px;
    }

    .ok-home-lead{
        font-size:15px;
    }

    .ok-home-panel-card{
        min-height:190px;
        padding:15px;
    }

    .ok-home-panel-card strong{
        font-size:15px;
    }

    .ok-search-heading h2{
        font-size:36px;
    }

    .ok-search-heading > div > p:last-child{
        font-size:14px;
    }

    .ok-search-input input,
    .ok-search-select select{
        height:68px;
        font-size:15px;
        padding:0 23px;
    }

    .ok-search-form > button{
        height:68px;
        min-height:68px;
    }

    .ok-popular a{
        min-height:38px;
        padding:0 14px;
        font-size:11px;
    }

    .ok-home-category{
        min-height:120px;
        padding:14px;
    }

    .ok-home-category strong{
        font-size:11px;
    }

    .ok-home-category small{
        font-size:8px;
    }

    .ok-home-business-card{
        min-height:145px;
    }

    .ok-growth-card{
        min-height:205px;
        padding:15px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media(max-width:360px){

    .ok-home-logo{
        font-size:21px;
    }

    .ok-home-nav{
        gap:9px;
    }

    .ok-home-nav a{
        font-size:11px;
    }

    .ok-home-hero h1{
        font-size:41px;
    }

    .ok-home-panel-card{
        min-height:180px;
    }

    .ok-search-heading h2{
        font-size:33px;
    }

    .ok-popular a{
        padding:0 11px;
        font-size:10px;
    }
}