/* Reset-ish */
* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, Arial, Roboto, "Helvetica Neue";
    color: #222222;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    font-size: 16px;
}

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

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

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px;
}

/* Header */
header.header {
    position: sticky;
    top: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(4px);
    z-index: 40;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #2ECC71, #20b95a);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.15);
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.2px;
}

nav.topnav {
    display: flex;
    gap: 18px;
    align-items: center;
}

nav.topnav a {
    color: #6b6b6b;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
}

nav.topnav a:hover {
    color: #222222;
    background: rgba(0, 0, 0, 0.03)
}

/* Burger for mobile */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    justify-content: center;
}

.burger svg {
    width: 20px;
    height: 20px;
    color: #222222
}

/* Hero */
.hero {
    padding: 46px 20px 28px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    justify-content: space-between;
}

.hero-left {
    max-width: 680px;
}

.eyebrow {
    display: inline-block;
    color: #2ECC71;
    font-weight: 700;
    margin-bottom: 10px
}

h1 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.05
}

p.lead {
    margin: 0 0 18px;
    color: #6b6b6b;
    font-size: 16px
}

/* Section */
section.block {
    padding: 26px 0 56px;
    border-top: 1px solid rgba(0, 0, 0, 0.03)
}

section.block .block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

section.block h2 {
    margin: 0;
    font-size: 20px
}

section.block p {
    margin: 6px 0 0;
    color: #6b6b6b
}

/* Grid of cards */
.grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

/* Responsive grid: try to show 5 columns on large, 4 on medium, 2 on small */
@media (min-width: 1240px) {
    .grid.products {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid.wholesale {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid.ready {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 960px) and (max-width: 1239px) {
    .grid.products, .grid.wholesale, .grid.ready {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) and (max-width: 959px) {
    .grid.products, .grid.wholesale, .grid.ready {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .grid.products, .grid.wholesale, .grid.ready {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        flex-direction: column;
        align-items: flex-start
    }
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06);
}

.card .logo-placeholder {
    display: inline-grid;
    place-items: center;
    gap: 8px;
    text-align: center;
}

.card .logo-placeholder img {
    max-height: 44px;
    max-width: 120px;
    object-fit: contain
}

.card .service-name {
    margin-top: 8px;
    font-size: 13px;
    color: black;
}

/* Buttons */
.btn-primary {
    background: #2ECC71;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
}

.btn-secondary {
    border: 1px solid rgba(0,0,0,0.06);
    padding: 10px 14px;
    border-radius: 10px;
    color: #222222;
    font-weight: 600;
    background: transparent;
    display: inline-block;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 18px;
    padding: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}

.flex-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.flex-contact {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 220px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.04);
}

.contact-card-narrow {
    flex: 0 0 220px;
    min-width: 160px;
}

/* Card backgrounds */
.card-bg-yellow { background: #fff176; }
.card-bg-green { background: #d2f5d6; }
.card-bg-pink { background: #ffe0e6; }
.card-bg-cyan { background: #e0f7fa; }
.card-bg-lightgreen { background: #e0f8e0; }
.card-bg-blue { background: #e3f2fd; }
.card-bg-mint { background: #e0ffe0; }
.card-bg-mint2 { background: #e0f7e9; }
.card-bg-red { background: #ffeaea; }
.card-bg-cream { background: #fffde7; }
.card-bg-wholesale1 { background: #f7fbe7; }
.card-bg-wholesale2 { background: #f1f8e9; }
.card-bg-wholesale3 { background: #f0f4c3; }
.card-bg-wholesale4 { background: #f3e5f5; }
.card-bg-wholesale5 { background: #f9fbe7; }
.card-bg-ready-yellow { background: #fff176; }
.card-bg-ready-mint2 { background: #e0f7e9; }
.card-bg-ready-pink { background: #ffe0e6; }
.card-bg-ready-cream { background: #fff8e1; }
.card-bg-ready-rose { background: #fce4ec; }
.card-bg-ready-green { background: #e8f5e9; }
.card-bg-ready-sushi { background: #fffde7; }
.card-bg-ready-orange { background: #fff3e0; }
.card-bg-ready-blue { background: #e7f2ff; }
.card-bg-ready-burger { background: #ffe0b2; }

/* Card inner styles */
.card-inner {
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.card-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.card-muted {
    font-size: 14px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
    color: #6b6b6b;
    font-size: 14px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center
}

.small {
    font-size: 13px;
    color: #6b6b6b
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
}

.mobile-menu .panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.06);
}

.mobile-menu .panel a {
    display: block;
    padding: 12px 8px;
    border-radius: 8px;
    color: #6b6b6b
}

.mobile-menu .panel a:hover {
    color: #222222;
    background: rgba(0, 0, 0, 0.03)
}

/* Domain Sale Banner */
.domain-sale-banner {
    background: #ffe9b3;
    color: #7a4a00;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #ffd580;
    letter-spacing: 0.1px;
    z-index: 30;
}

.domain-sale-banner a {
    color: #7a4a00;
    text-decoration: underline;
    font-weight: 700;
}

/* Utility */
.muted {
    color: #6b6b6b
}

.center {
    text-align: center
}

/* smooth anchor scroll */
html {
    scroll-behavior: smooth;
}