:root {
    --font-h: 'Syne', sans-serif;
    --font-b: 'DM Sans', sans-serif;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-lt: #eff6ff;
    --dark: #0f172a;
    --slate: #1e293b;
    --gray: #64748b;
    --muted: #94a3b8;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #fff;
    --green: #10b981;
    --yellow: #f59e0b;
    --red: #ef4444
}

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

body {
    font-family: var(--font-b);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6
}

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

button {
    font-family: inherit;
    cursor: pointer
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap
}

.btn-primary {
    background: var(--blue);
    color: #fff
}

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

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--gray)
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.btn-ghost {
    background: transparent;
    color: var(--gray)
}

.btn-ghost:hover {
    background: var(--bg)
}

.btn-white {
    background: #fff;
    color: var(--blue)
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px
}

.btn-lg {
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 12px
}

.btn-sm {
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 8px
}

.btn-xs {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px
}

.badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0
}

.badge-green {
    background: #dcfce7;
    color: #16a34a
}

.badge-yellow {
    background: #fef9c3;
    color: #a16207
}

.badge-gray {
    background: #f1f5f9;
    color: #64748b
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: .03em
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: var(--font-b);
    font-size: 14px;
    color: var(--dark);
    transition: border-color .15s;
    outline: none;
    background: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.input-disabled {
    opacity: .5;
    cursor: not-allowed;
    background: var(--bg) !important
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 8px
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer
}

.form-check input {
    width: 15px;
    height: 15px
}

.link-blue {
    color: var(--blue);
    font-weight: 600
}

.field-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px
}

.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px
}

.nav-logo {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    color: var(--blue)
}

.nav-links {
    display: flex;
    gap: 4px;
    flex: 1
}

.nav-link {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    transition: all .15s
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark);
    background: var(--bg)
}

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

.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%)
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-lt);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid #bfdbfe
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-desc {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.hero-note {
    font-size: 13px;
    color: var(--muted)
}

.services-section {
    padding: 80px 0
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--dark);
    margin-bottom: 40px
}

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

.service-card-home {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .2s
}

.service-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08)
}

.service-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 14px
}

.service-card-home h3 {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.service-card-home p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6
}

.pricing-preview {
    padding: 80px 0;
    background: var(--bg)
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.plan-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all .2s
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08)
}

.plan-popular {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.plan-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap
}

.plan-name {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.plan-amount {
    font-family: var(--font-h);
    font-size: 40px;
    font-weight: 800;
    color: var(--dark)
}

.plan-period {
    font-size: 15px;
    color: var(--gray)
}

.plan-yearly {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.plan-features li {
    font-size: 13px;
    color: var(--gray)
}

.plan-note {
    font-size: 11px;
    color: var(--muted);
    text-align: center
}

.cta-section {
    padding: 80px 0
}

.cta-box {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    color: #fff
}

.cta-box h2 {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 28px
}

.page-header {
    padding: 56px 0 40px;
    background: linear-gradient(180deg, var(--bg), #fff);
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px
}

.page-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--dark);
    margin-bottom: 12px
}

.page-desc {
    font-size: 16px;
    color: var(--gray)
}

.contact-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding-bottom: 80px
}

.contact-info h3 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px
}

.contact-info>p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.contact-item span {
    font-size: 22px
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px
}

.contact-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0
}

.form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.legal-content {
    max-width: 700px;
    padding: 40px 0 80px
}

.legal-content h2 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 10px
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .6);
    padding: 56px 0 0
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-logo {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

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

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 4px
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    transition: color .15s
}

.footer-col a:hover {
    color: rgba(255, 255, 255, .85)
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .25)
}

.auth-wrapper {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    background: var(--bg)
}

.auth-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .06)
}

.auth-box-wide {
    max-width: 560px
}

.auth-logo {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    margin-bottom: 24px
}

.auth-header {
    margin-bottom: 24px
}

.auth-header h1 {
    font-family: var(--font-h);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px
}

.auth-header p {
    font-size: 14px;
    color: var(--gray)
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.auth-plan-summary {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    color: #fff
}

.auth-plan-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px
}

.auth-plan-name {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px
}

.auth-plan-price {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 800;
    color: #60a5fa
}

.auth-plan-price small {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .5)
}

.auth-footer {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 20px
}

.auth-footer a {
    color: var(--blue);
    font-weight: 600
}

.dashboard-body {
    background: #f1f5f9;
    min-height: 100vh
}

.db {
    display: grid;
    grid-template-columns: 248px 1fr;
    min-height: 100vh
}

.db-sidebar {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, .05)
}

.db-logo {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    color: #93c5fd;
    padding: 22px 18px 16px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.db-nav {
    flex: 1;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px
}

.db-nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
    padding: 14px 10px 5px;
    display: block
}

.db-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
    position: relative;
    border: 1px solid transparent;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer
}

.db-nav-item span:first-child {
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex-shrink: 0
}

.db-nav-item:hover {
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .05)
}

.db-active {
    color: #fff !important;
    background: rgba(26, 86, 219, 0.2) !important;
    border-color: rgba(26, 86, 219, 0.3) !important;
}

.db-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0
}

.dot-on {
    background: #10b981
}

.dot-wait {
    background: #f59e0b
}

.dot-off {
    background: rgba(255, 255, 255, .12)
}

.db-logout:hover {
    color: #fca5a5 !important;
    background: rgba(239, 68, 68, .07) !important
}

.db-plan-badge {
    margin: 8px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 10px
}

.db-sidebar-bottom {
    padding: 6px 8px 14px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.db-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.db-topbar {
    background: #fff;
    height: 58px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100
}

.db-page-title {
    font-family: var(--font-h);
    font-size: 17px;
    font-weight: 700
}

.db-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.db-plan-chip {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px
}

.db-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    color: #fff
}

.db-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate)
}

.db-alerts {
    padding: 0 24px
}

.db-content {
    padding: 22px 24px;
    flex: 1
}

.db-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04)
}

.db-card-title {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9
}

.db-card-cta {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    border: none;
    color: #fff
}

.db-card-cta h3 {
    font-family: var(--font-h);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.db-card-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px
}

.db-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.db-greet {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 700
}

.db-greet strong {
    font-weight: 800
}

.db-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px
}

.db-service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .2s;
    position: relative;
    overflow: hidden
}

.db-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--svc-color);
    opacity: 0;
    transition: opacity .2s
}

.db-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08)
}

.db-service-card:hover::before {
    opacity: 1
}

.svc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.svc-icon {
    font-size: 26px
}

.db-service-card h4 {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700
}

.db-service-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
    flex: 1
}

.svc-footer {
    padding-top: 8px;
    border-top: 1px solid #f8fafc
}

.svc-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue)
}

.svc-link-gray {
    font-size: 12px;
    color: var(--muted)
}

.info-list {
    display: flex;
    flex-direction: column
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 13px
}

.info-row:last-child {
    border-bottom: none
}

.info-row>span:first-child {
    color: var(--gray)
}

.info-row>span:last-child {
    font-weight: 600
}

.sub-name {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px
}

.activity-list {
    list-style: none;
    display: flex;
    flex-direction: column
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 13px
}

.activity-item:last-child {
    border-bottom: none
}

.activity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 4px
}

.activity-text {
    color: var(--slate);
    margin-bottom: 2px
}

.activity-time {
    font-size: 11px;
    color: var(--muted)
}

.db-empty-state {
    text-align: center;
    padding: 64px 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed var(--border)
}

.db-empty-state>span {
    font-size: 48px;
    display: block;
    margin-bottom: 14px
}

.db-empty-state h3 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.db-empty-state p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 22px
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #92400e
}

.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1.5px solid var(--border)
}

.plan-row-current {
    border-color: var(--blue);
    background: var(--blue-lt)
}

@media(max-width:1100px) {

    .services-grid-home,
    .db-services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .db {
        grid-template-columns: 1fr
    }

    .db-sidebar {
        display: none
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .container {
        padding: 0 16px
    }

    .hero {
        padding: 60px 0 48px
    }

    .db-row-2,
    .db-services-grid,
    .form-row {
        grid-template-columns: 1fr
    }

    .db-content {
        padding: 14px
    }
}