:root {
    --orange: #f5a257;
    --orange-dark: #e88932;
    --purple: #9b7cf6;
    --pink: #f08cc3;
    --dark: #09111f;
    --heading: #101828;
    --text: #5f6674;
    --muted: #7b8190;
    --white: #ffffff;
    --border: #ececec;
    --light: #f8f8f8;
    --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

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

a {
    color: var(--orange-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.container {
    width: min(92%, 1190px);
    margin-inline: auto;
}

.section {
    padding: 76px 0;
}

.section-light {
    background: var(--light);
}

.section-soft {
    background: linear-gradient(180deg, #fffaf7 0%, #fff6f0 100%);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
}

.small-title {
    display: inline-block;
    margin-bottom: 12px;
    color: #7560b6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-title {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-title h2,
.intro-content h2,
.split-copy h2 {
    margin: 0 0 16px;
    color: var(--heading);
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 650;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.section-title p,
.intro-content p,
.split-copy p {
    margin: 0 0 16px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 108px;
    background:
        radial-gradient(circle at 85% 12%, rgba(240, 140, 195, 0.24), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(155, 124, 246, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 58px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid #ffd7b4;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #fff0e4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 22px;
    color: var(--heading);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 720;
    letter-spacing: -1.8px;
    line-height: 1.08;
}

.hero p {
    max-width: 710px;
    margin: 0 0 18px;
    font-size: 17px;
}

.hero .hero-lead {
    font-size: 19px;
    line-height: 1.75;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 34px;
}

.hero-point {
    position: relative;
    padding: 14px 16px 14px 44px;
    border: 1px solid #f0e7df;
    border-radius: 14px;
    color: var(--heading);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.05);
    font-weight: 650;
}

.hero-point::before {
    content: "✓";
    position: absolute;
    top: 15px;
    left: 15px;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
    font-size: 12px;
    font-weight: 800;
}

.hero-point:hover {
    color: var(--orange-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 28px rgba(245, 162, 87, 0.3);
}

.btn-white {
    border-color: #eaded5;
    color: var(--heading);
    background: var(--white);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
}

.lead-form-box {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid #ffe2cc;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.13);
}

.lead-form-box::before,
.card::before,
.trust-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
}

.lead-form-box h2 {
    margin: 4px 0 10px;
    color: var(--heading);
    font-size: 29px;
    line-height: 1.3;
}

.lead-form-box > p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    margin-bottom: 13px;
    padding: 14px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    color: var(--heading);
    background: #fcfcfc;
}

.lead-form textarea {
    min-height: 105px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    border-color: var(--orange);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 162, 87, 0.12);
}

.lead-form button {
    width: 100%;
    padding: 15px 24px;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 28px rgba(245, 162, 87, 0.28);
    font-weight: 700;
    cursor: pointer;
}

.form-note {
    margin: 12px 0 0 !important;
    text-align: center;
    font-size: 13px !important;
}

.stats-section {
    position: relative;
    z-index: 5;
    margin-top: -52px;
    padding-bottom: 36px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-box {
    padding: 28px 20px;
    border: 1px solid #f0e8df;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.09);
}

.stat-icon,
.card-icon,
.homepage-badge,
.feature-icon {
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    font-size: 23px;
}

.stat-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading);
    font-size: 19px;
}

.stat-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.intro-section {
    padding-top: 48px;
}

.intro-box {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 44px;
    align-items: center;
    padding: 60px;
    border: 1px solid #f0e8df;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 20%, rgba(245, 162, 87, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
    box-shadow: 0 24px 65px rgba(16, 24, 40, 0.08);
}

.intro-lead {
    color: #414a5b;
    font-size: 18px;
}

.intro-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #f0e8df;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.intro-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
}

.intro-card > span,
.resource-card > span {
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-card h3 {
    margin: 8px 0 14px;
    color: var(--heading);
    font-size: 25px;
    line-height: 1.3;
}

.intro-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.intro-card li {
    position: relative;
    padding: 11px 0 11px 28px;
    border-bottom: 1px solid #f1f1f1;
}

.intro-card li:last-child {
    border-bottom: 0;
}

.intro-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-dark);
    font-weight: 800;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 25px;
}

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

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

.card,
.trust-box,
.resource-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
}

.card-icon,
.homepage-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    font-size: 21px;
}

.card h3,
.trust-box h3,
.resource-card h3,
.feature-content h3,
.faq-item h3 {
    margin: 0 0 11px;
    color: var(--heading);
    line-height: 1.35;
}

.card h3 {
    font-size: 22px;
}

.card p {
    margin: 0;
    font-size: 15.5px;
}

.service-card-link {
    display: inline-block;
    margin-top: 17px;
    font-size: 14px;
    font-weight: 750;
}

.compact-grid .card p {
    min-height: 82px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: start;
    padding: 58px;
    border: 1px solid #f1ebe5;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.split-copy .btn {
    margin-top: 10px;
}

.feature-panel {
    display: grid;
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid #f2e8df;
    border-radius: 18px;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.09);
}

.feature-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 23px;
}

.feature-number {
    display: inline-block;
    margin-bottom: 3px;
    color: #7560b6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.feature-content h3 {
    font-size: 19px;
}

.feature-content p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
}

.process {
    counter-reset: process-step;
}

.process-card {
    padding-left: 82px;
}

.process-card::after {
    counter-increment: process-step;
    content: counter(process-step, decimal-leading-zero);
    position: absolute;
    top: 34px;
    left: 28px;
    color: var(--orange-dark);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.trust-box h3 {
    font-size: 22px;
}

.trust-box p {
    margin: 0;
}

.trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.trust-links a {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--heading);
    background: var(--white);
    font-size: 14px;
    font-weight: 650;
}

.resource-card > span {
    display: block;
    margin-bottom: 8px;
}

.resource-card h3 {
    font-size: 21px;
}

.resource-card p {
    margin: 0 0 14px;
    font-size: 15px;
}

.resource-card a {
    font-weight: 750;
}

.center-link {
    margin-top: 30px;
    text-align: center;
}

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

.faq-item {
    margin-bottom: 16px;
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.faq-item h3 {
    font-size: 19px;
}

.faq-item p {
    margin: 0;
}

.cta {
    padding: 82px 20px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
}

.cta h2 {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.2;
}

.cta p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
}

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

/* Header rules required by includes/header.php */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0;
    border-bottom: 1px solid #eeeeee;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.site-header .container {
    display: flex;
    width: min(100%, 1400px);
    min-height: 64px;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: 220px;
}

.menu-toggle,
.menu-icon {
    display: none;
}

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.site-nav > a,
.site-nav > .nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    padding: 21px 0;
    color: #4c4b5e;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 2.4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-nav > a:hover,
.site-nav > .nav-item:hover > .nav-link,
.site-nav .active {
    color: #ff5fa8;
    text-decoration: none;
}

.nav-item {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 64px;
    left: 50%;
    display: grid;
    width: min(1200px, calc(100vw - 48px));
    padding: 28px 30px 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    border: 1px solid #f1f1f1;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(16, 24, 40, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-col h3 {
    margin: 0 0 4px;
    color: #7560b6;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.25;
    text-transform: uppercase;
}

.mega-col p {
    margin: 0 0 12px;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.4;
}

.mega-col a {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 7px 0;
    color: #6f6f7d;
    font-size: 14px;
    line-height: 1.4;
}

.mega-col a:hover,
.mega-col a.active-link {
    color: #ff5fa8;
    text-decoration: none;
}

.header-contact {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    align-items: center;
}

.header-contact a {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 12px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe0c4;
    border-radius: 999px;
    color: #4c4b5e;
    background: #fff7f0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header-contact a:hover {
    color: #ff5fa8;
    text-decoration: none;
}

.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.floating-call {
    left: 20px;
    min-width: 58px;
    height: 58px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.floating-whatsapp {
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
}

.floating-call:hover,
.floating-whatsapp:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 17px;
    }

    .site-nav > a,
    .site-nav > .nav-item > .nav-link {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .header-contact a {
        padding-inline: 10px;
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .section {
        padding: 64px 0;
    }

    .hero-grid,
    .intro-box,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 38px;
    }

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

    .intro-box,
    .split-section {
        padding: 42px;
    }

    .compact-grid .card p {
        min-height: 0;
    }

    .site-header .container {
        width: 100%;
        max-width: 100%;
        min-height: 64px;
        padding: 0 18px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .site-logo img {
        width: 205px;
    }

    .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .menu-icon {
        display: inline-flex;
        width: 42px;
        height: 42px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        border: 1px solid #eeeeee;
        border-radius: 10px;
        color: #7560b6;
        background: #ffffff;
        font-size: 22px;
        cursor: pointer;
    }

    .site-nav {
        position: static;
        order: 3;
        display: none;
        width: 100%;
        max-height: calc(100vh - 64px);
        margin: 0;
        padding: 10px 0 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid #eeeeee;
        background: #ffffff;
    }

    .menu-toggle:checked ~ .site-nav {
        display: flex;
    }

    .site-nav > a,
    .site-nav > .nav-item > .nav-link {
        width: 100%;
        padding: 14px 0;
        justify-content: space-between;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .mega-menu {
        position: static;
        display: grid;
        width: 100%;
        padding: 15px 0 0;
        grid-template-columns: 1fr;
        gap: 18px;
        border: 0;
        border-top: 1px solid #f1f1f1;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .header-contact {
        order: 4;
        display: none;
        width: 100%;
        padding: 0 0 18px;
        grid-template-columns: 1fr;
        gap: 10px;
        border-top: 1px solid #f1f1f1;
        background: #ffffff;
    }

    .menu-toggle:checked ~ .header-contact {
        display: grid;
    }

    .header-contact a {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 14px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding: 64px 0 78px;
    }

    .hero-points,
    .stats-grid,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .lead-form-box,
    .intro-box,
    .split-section {
        padding: 28px 22px;
    }

    .stats-section {
        margin-top: -32px;
    }

    .process-card {
        padding: 64px 24px 28px;
    }

    .process-card::after {
        top: 28px;
        left: 24px;
    }

    .btn-group .btn {
        width: 100%;
    }

    .floating-call {
        left: 14px;
        width: 56px;
        min-width: 56px;
        height: 56px;
        padding: 0;
    }

    .floating-call-text {
        display: none;
    }

    .floating-whatsapp {
        right: 14px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 420px) {
    .site-header .container {
        padding-inline: 14px;
    }

    .site-logo img {
        width: 178px;
    }
}

/* Search-intent solution section */
.solution-grid .solution-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.solution-card .service-card-link {
    margin-top: auto;
    padding-top: 18px;
}

.problem-label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 13px;
    padding: 6px 11px;
    border: 1px solid #eadfff;
    border-radius: 999px;
    color: #6f57b8;
    background: #f8f4ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Google AI Search guidance section */
.ai-search-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(155, 124, 246, 0.16), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(245, 162, 87, 0.15), transparent 28%),
        #ffffff;
}

.ai-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 46px;
    align-items: center;
    padding: 58px;
    border: 1px solid #eee7f7;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 58px rgba(16, 24, 40, 0.08);
}

.ai-search-copy h2 {
    margin: 0 0 16px;
    color: var(--heading);
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 650;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.ai-search-copy p {
    margin: 0 0 16px;
}

.ai-search-copy .btn-group {
    margin-top: 24px;
}

.ai-principles {
    padding: 31px;
    border: 1px solid #eee5ff;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
}

.ai-principles h3 {
    margin: 0 0 14px;
    color: var(--heading);
    font-size: 23px;
    line-height: 1.35;
}

.ai-principles ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ai-principles li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #eee9f6;
}

.ai-principles li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7560b6;
    font-weight: 800;
}

.ai-principles li:last-child {
    border-bottom: 0;
}

.ai-note {
    margin: 18px 0 0;
    padding: 13px 15px;
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    color: #4a5160;
    background: #fff8f2;
    font-size: 13.5px;
}

.faq-item a {
    font-weight: 700;
}

@media (max-width: 980px) {
    .ai-search-box {
        grid-template-columns: 1fr;
        padding: 42px;
    }
}

@media (max-width: 600px) {
    .ai-search-box {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .ai-principles {
        padding: 24px 20px;
    }
}
