/* =========================================================
   SMB STARTER THEME - MOBILE FIRST UI SYSTEM
========================================================= */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: #111111;
    background: #ffffff;
    text-rendering: optimizeLegibility;
}

img,
picture {
    display: block;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
}

p {
    margin: 0;
}

h1 {
    font-size: 42px;
    line-height: 1.05;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.section-sm {
    padding-top: 48px;
    padding-bottom: 48px;
}

.section-lg {
    padding-top: 96px;
    padding-bottom: 96px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
}

.nav {
    display: none;
}

.nav.is-open {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
    background: #ffffff;
    overflow-y: auto;
}

.nav ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f5f5f5;
}

.hero {
    padding-top: 96px;
    padding-bottom: 72px;
}

.hero-grid {
    display: grid;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-label {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 600;
}

.hero-text {
    max-width: 720px;
    font-size: 18px;
    color: #444444;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
}

.hero-image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
    grid-template-columns: 1fr;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

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

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-72 { margin-bottom: 72px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #111111;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.92;
}

.btn-secondary {
    border-color: #111111;
    background: transparent;
    color: #111111;
}

.btn-secondary:hover {
    background: #111111;
    color: #ffffff;
}

.btn-light {
    background: #f5f5f5;
    color: #111111;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
}

.card-bordered {
    border: 1px solid #eeeeee;
}

.card-soft {
    background: #f7f7f7;
}

.card-image {
    overflow: hidden;
    border-radius: 18px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding-top: 24px;
}

.image-cover {
    position: relative;
    overflow: hidden;
}

.image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading p {
    margin-top: 16px;
    color: #555555;
}

.trust-bar {
    display: grid;
    gap: 16px;
}

.trust-item {
    padding: 20px;
    border-radius: 18px;
    background: #f7f7f7;
}

.process-grid {
    display: grid;
    gap: 24px;
}

.process-card {
    padding: 28px;
    border-radius: 24px;
    background: #f7f7f7;
}

.process-number {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
}

.input,
textarea,
select {
    width: 100%;
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

textarea {
    min-height: 160px;
    padding-top: 18px;
    resize: vertical;
}

.input:focus,
textarea:focus,
select:focus {
    border-color: #111111;
}

.footer {
    padding-top: 72px;
    padding-bottom: 48px;
    background: #111111;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

.footer a {
    color: #ffffff;
}

.footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}

.text-center { text-align: center; }
.text-white { color: #ffffff; }
.bg-dark { background: #111111; }
.bg-light { background: #f7f7f7; }
.w-full { width: 100%; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }
.radius-12 { border-radius: 12px; }
.radius-18 { border-radius: 18px; }
.radius-24 { border-radius: 24px; }
.radius-32 { border-radius: 32px; }

@media (min-width: 768px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .section-lg {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 96px;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

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

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

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

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

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

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .nav ul {
        flex-direction: row;
        align-items: center;
        gap: 28px;
    }

    .mobile-toggle {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
    }

    h1 {
        font-size: 72px;
    }

    h2 {
        font-size: 52px;
    }

    h3 {
        font-size: 36px;
    }

    .hero {
        padding-top: 160px;
        padding-bottom: 120px;
    }

    .section {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .section-lg {
        padding-top: 140px;
        padding-bottom: 140px;
    }

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