:root {
    --bg: #f8fafc;
    --bg-soft: #eef6ff;
    --surface: #ffffff;
    --surface-muted: #f1f5f9;
    --ink: #0f172a;
    --ink-soft: #1e293b;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #dbeafe;
    --accent: #14b8a6;
    --accent-soft: #ccfbf1;
    --warning: #f59e0b;
    --border: #e2e8f0;
    --border-soft: rgba(148, 163, 184, 0.26);
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 22px 70px rgba(15, 23, 42, 0.10);
    --shadow-blue: 0 22px 50px rgba(37, 99, 235, 0.20);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(20, 184, 166, 0.10), transparent 28%),
        var(--bg);
    line-height: 1.72;
    font-weight: 400;
    text-rendering: geometricPrecision;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 55%);
}

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

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

.container {
    width: min(1140px, calc(100% - 44px));
    margin: 0 auto;
}

.section-pad {
    padding: 104px 0;
}

.section-pad-sm {
    padding: 76px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 250, 252, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
    font-size: 1.1rem;
    font-weight: 700;
}

.brand-text {
    font-size: 1.05rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.20);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0)),
        radial-gradient(circle at 80% 22%, rgba(37, 99, 235, 0.12), transparent 26%),
        radial-gradient(circle at 18% 18%, rgba(20, 184, 166, 0.12), transparent 22%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.12));
    pointer-events: none;
    filter: blur(8px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 68px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(219, 234, 254, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.12);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    font-size: clamp(2.75rem, 6vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 700;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 650;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    font-weight: 650;
}

h4 {
    margin-bottom: 8px;
    font-weight: 650;
}

.hero-text {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 34px 0 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e40af);
}

.btn-secondary,
.btn-outline {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--border);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.btn-light {
    color: var(--primary-dark);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.btn.full {
    width: 100%;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-row div {
    min-width: 150px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(226, 232, 240, 0.86);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.trust-row strong {
    display: block;
    color: var(--ink-soft);
    font-size: 1rem;
    font-weight: 650;
}

.trust-row span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-card {
    position: relative;
    padding: 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(20, 184, 166, 0.34), rgba(255, 255, 255, 0.4));
}

.hero-card-top {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-card-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.metric-card,
.ai-box {
    border-radius: 22px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.main-metric {
    margin-bottom: 16px;
}

.metric-card p,
.ai-box p,
.package-desc,
.section-head p,
.training-panel p,
.contact-copy p,
.step-card p,
.service-card p,
.training-list p,
.testimonial-card p,
.cta-band p,
.site-footer p {
    color: var(--muted);
}

.metric-card h3 {
    font-size: 1.85rem;
    font-weight: 650;
}

.progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #e2e8f0;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.ai-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.ai-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 700;
}

.problem {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: start;
}

.problem .section-label {
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.10);
}

.problem-list {
    display: grid;
    gap: 14px;
}

.problem-item {
    padding: 18px 20px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.centered .section-label {
    margin-left: auto;
    margin-right: auto;
}

.service-grid,
.pricing-grid,
.testimonials {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(20, 184, 166, 0.10), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.10), transparent 28%),
        #ffffff;
}

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

.testimonial-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(20, 184, 166, 0.14));
    pointer-events: none;
}

.quote-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 600;
}

.testimonial-quote {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    color: var(--ink-soft) !important;
    font-size: 1rem;
}

.testimonial-profile {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 650;
}

.testimonial-profile h3 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-profile p {
    margin-bottom: 2px;
    font-size: 0.88rem;
}

.testimonial-profile span {
    display: block;
    color: var(--muted-2);
    font-size: 0.76rem;
}

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

.service-card,
.price-card,
.step-card,
.testimonial-card,
.training-list > div,
.contact-form,
.contact-note {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.service-card,
.price-card,
.step-card,
.testimonial-card,
.training-list > div {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.price-card:hover,
.step-card:hover,
.testimonial-card:hover,
.training-list > div:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

.service-card {
    min-height: 260px;
    padding: 28px;
}

.card-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 15px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 0.88rem;
    font-weight: 650;
}

.training {
    background:
        radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.12), transparent 30%),
        linear-gradient(135deg, #f8fafc, #ecfeff);
}

.training-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 46px;
    align-items: start;
}

.training-panel {
    position: sticky;
    top: 110px;
    padding: 36px;
    border-radius: var(--radius-xl);
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 10%, rgba(20, 184, 166, 0.28), transparent 32%),
        linear-gradient(135deg, #111827, #1e3a8a);
    box-shadow: var(--shadow-md);
}

.training-panel .section-label {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.10);
}

.training-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.training-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.training-list > div {
    padding: 28px;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 32px;
}

.price-card.featured {
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 28px 80px rgba(37, 99, 235, 0.13);
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: translateY(-14px);
}

.badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #1d4ed8;
    background: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 600;
}

.price {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.price-card ul {
    padding: 0;
    margin: 24px 0 26px;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--muted);
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

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

.step-card {
    padding: 28px;
}

.step-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 650;
}

.cta-band {
    padding: 62px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 12%, rgba(20, 184, 166, 0.28), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e40af);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.cta-grid h2 {
    max-width: 840px;
    margin-bottom: 10px;
}

.cta-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: start;
}

.contact-note {
    margin-top: 24px;
    padding: 18px;
    color: var(--muted);
}

.contact-note code {
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.contact-form {
    padding: 32px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.93rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    outline: none;
    font: inherit;
    color: var(--ink);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #a8b3c2;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

textarea {
    resize: vertical;
}

.site-footer {
    padding: 50px 0 24px;
    color: #ffffff;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding-bottom: 34px;
}

.footer-brand .brand-mark {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: none;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
}


/* Modern testimonial carousel */
.testimonial-shell {
    position: relative;
}

.testimonial-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.testimonial-head .section-head {
    margin-bottom: 0;
}

.testimonial-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    background: #ffffff;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 8px 2px 20px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    min-width: calc((100% - 40px) / 3);
    scroll-snap-align: start;
}

.testimonials .testimonial-card {
    min-height: 390px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.10), transparent 34%);
}

.testimonials .testimonial-card::after {
    display: none;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-person img {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    border-radius: 22px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.testimonial-person h3 {
    margin: 0 0 2px;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.testimonial-person p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.rating {
    display: inline-flex;
    gap: 2px;
    color: var(--warning);
    font-size: 0.95rem;
    white-space: nowrap;
}

.testimonials .testimonial-quote {
    margin: 0 0 28px;
    color: var(--ink-soft) !important;
    font-size: 1.02rem;
    line-height: 1.78;
    letter-spacing: -0.01em;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-bottom span {
    color: var(--muted);
    font-size: 0.82rem;
}

.testimonial-bottom strong {
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dots button.active {
    width: 26px;
    background: var(--primary);
}

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .hero-grid,
    .problem-grid,
    .training-grid,
    .contact-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 86px;
    }

    .training-panel {
        position: static;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured,
    .price-card.featured:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1140px);
    }

    .section-pad {
        padding: 72px 0;
    }

    .section-pad-sm {
        padding: 58px 0;
    }

    .nav-wrap {
        height: 72px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .nav-cta {
        display: none;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
        letter-spacing: -0.052em;
    }

    h2 {
        letter-spacing: -0.035em;
    }

    .hero-actions,
    .trust-row {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .mini-grid,
    .service-grid,
    .training-list,
    .step-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .training-panel,
    .price-card,
    .service-card,
    .testimonial-card,
    .step-card {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}


@media (max-width: 980px) {
    .testimonial-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .carousel-slide {
        min-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 640px) {
    .testimonial-actions {
        width: 100%;
        justify-content: space-between;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .testimonials .testimonial-card {
        min-height: 410px;
        padding: 22px;
    }

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

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