:root {
    --primary-blue: #2563EB;
    --primary-blue-hover: #1d4ed8;
    --color-primary: var(--primary-blue);
    --color-primary-dark: var(--primary-blue-hover);
    --dark-slate: #0F172A;
    --text-main: #111827;
    --text-muted: #4b5563;
    --color-text-main: var(--text-main);
    --color-text-muted: var(--text-muted);
    --white: #FFFFFF;
    --bg-white: #ffffff;
    --bg-color: var(--bg-white);
    --color-bg: var(--bg-white);
    --border-color: #E2E8F0;
    --color-border: var(--border-color);
    --border-light: var(--border-color);
    --browser-bg: #f9fafb;
    --card-bg: #fbfbfc;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.05);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-speed: 300ms;
    --nav-height: 82px;
    --max-width: 1200px;
    --container-max-width: 1100px;
    --faq-max-width: 900px;
    --container-padding: 80px 20px;
    --radius: 18px;
    --radius-card: 22px;
    --radius-cta: 30px;
    --radius-input: 18px;
    --card-radius: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family: var(--font-main);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.45);
    outline-offset: 4px;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--white);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span.am {
    color: var(--primary-blue);
}

.logo span.web-design {
    color: var(--dark-slate);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-slate);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0 24px;
    height: 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-slate);
    margin: 4px 0;
    transition: 0.3s;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform var(--transition-speed) ease;
    z-index: 900;
}

.mobile-overlay.active {
    transform: translateY(0);
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.mobile-overlay .nav-link {
    font-size: 24px;
}

.mobile-overlay .cta-button {
    width: 100%;
}

.mobile-menu li:last-child {
    width: 80%;
}

.hero {
    padding: 100px 20px;
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    padding: 0;
}

.hero__content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards ease-out;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero__headline {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.hero__subheading {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn--primary:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.02);
}

.btn--secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn--secondary:hover {
    border-color: var(--text-main);
    transform: scale(1.02);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.hero__visual {
    position: relative;
    perspective: 1000px;
}

.browser-mockup {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 12px;
    position: relative;
    z-index: 2;
}

.browser-header {
    height: 36px;
    background: #f1f3f4;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-content {
    background: var(--browser-bg);
    border-radius: 8px;
    min-height: 450px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.browser-nav {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.browser-nav span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.browser-nav-links {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.browser-nav .browser-nav-login {
    color: var(--primary-blue);
}

.browser-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-weight: 700;
    font-size: 14px;
}

.browser-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.browser-copy {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.browser-cta {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 40px;
}

.stats-container {
    position: absolute;
    top: 20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.stat-card {
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 140px;
    animation: float 3s ease-in-out infinite;
}

.stat-card span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-card strong {
    font-size: 18px;
    color: var(--primary-blue);
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.services-section {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    padding: 120px 24px;
    color: var(--text-main);
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .badge {
    background: rgba(37, 99, 235, 0.08);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.services-header h2 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.services-header p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-card);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

.service-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.cta-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-cta);
    padding: 64px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition);
}

.cta-panel h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-panel p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-premium {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-premium:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.pricing-section {
    padding: 120px 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.header-group {
    margin-bottom: 80px;
}

.pricing-section .badge {
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-section .headline {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 auto 24px;
}

.subheadline {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 80px;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
    position: relative;
    padding: 60px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: var(--bg-white);
}

.pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.07);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.card-label {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.card-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.card-price span {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.card-includes {
    margin-bottom: 40px;
    flex-grow: 1;
}

.includes-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.includes-list {
    list-style: none;
}

.includes-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.includes-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--color-primary);
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-align: center;
}

.pricing-note {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.note-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.note-text {
    color: var(--color-text-muted);
    font-size: 16px;
}

.section-examples {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    padding: 120px 24px;
    color: var(--text-main);
    overflow: hidden;
}

.examples-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .badge {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.example-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
}

.example-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.example-card.is-visible:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.section-examples .browser-mockup {
    width: 100%;
    aspect-ratio: 16 / 11;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    z-index: auto;
}

.example-card:hover .browser-mockup {
    transform: scale(1.02);
}

.mockup-header {
    height: 24px;
    background: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.section-examples .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
}

.mock-content {
    height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
}

.mock-nav strong {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.mock-hero {
    position: relative;
    z-index: 2;
}

.mock-hero h1 {
    font-size: clamp(17px, 2.3vw, 24px);
    font-weight: 800;
    line-height: 1.04;
    margin: 0;
    letter-spacing: 0;
}

.mock-hero p {
    max-width: 210px;
    font-size: 10px;
    line-height: 1.45;
    margin-top: 9px;
}

.mock-cta {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    width: fit-content;
    margin-top: 12px;
}

.mock-blocks {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.mock-block {
    flex: 1;
}

.mini-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.example-site--builder {
    background:
        radial-gradient(circle at 88% 20%, rgba(217, 173, 104, 0.58) 0 18%, transparent 19%),
        linear-gradient(115deg, rgba(18, 24, 35, 0.98) 0%, rgba(18, 24, 35, 0.94) 62%, rgba(71, 54, 34, 0.92) 100%),
        linear-gradient(135deg, #263041 0%, #9f8050 100%);
    color: #111827;
}

.example-site--builder .mock-content::before {
    content: "";
    position: absolute;
    inset: 28% -18% auto auto;
    width: 64%;
    height: 54%;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px);
    transform: rotate(-12deg);
}

.example-site--builder .mock-nav span,
.example-site--builder .mock-hero p,
.example-site--builder .mini-kicker {
    color: #111827;
}

.example-site--builder .mock-nav span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
}

.example-site--builder .mock-hero {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 14px;
    align-items: center;
    padding: 12px 18px 0;
}

.example-site--builder .mock-cta {
    background: #d9ad68;
    color: #111827;
}

.builder-frame {
    min-height: 116px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 4px;
    padding: 14px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
}

.roof-line {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transform: skewY(-16deg);
}

.house-shape {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
}

.house-shape span {
    background: rgba(255, 255, 255, 0.18);
}

.builder-stats {
    padding: 12px 18px 18px;
}

.builder-stats .mock-block {
    min-height: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    padding-left: 10px;
}

.builder-stats strong,
.builder-stats span {
    display: block;
}

.builder-stats strong {
    font-size: 16px;
    line-height: 1;
}

.builder-stats span {
    margin-top: 5px;
    font-size: 8px;
    text-transform: uppercase;
    color: #111827;
}

.example-site--electrician {
    background:
        linear-gradient(135deg, rgba(255, 213, 43, 0.95) 0%, rgba(255, 213, 43, 0.92) 44%, rgba(15, 23, 42, 0.98) 44%, rgba(15, 23, 42, 0.98) 100%);
    color: #111827;
}

.example-site--electrician .mock-nav {
    color: #111827;
}

.example-site--electrician .mock-nav span {
    background: #111827;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 9px;
}

.example-site--electrician .mock-hero {
    padding: 12px 18px 0;
}

.bolt-badge {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111827;
    color: #ffd52b;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.24);
}

.bolt-badge svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.example-site--electrician .mock-hero p {
    color: rgba(17, 24, 39, 0.74);
}

.mock-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.example-site--electrician .mock-cta {
    background: #111827;
    color: #ffffff;
}

.phone-pill {
    margin-top: 12px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 9px;
    font-weight: 800;
}

.service-tiles {
    padding: 12px 18px 18px;
}

.service-tiles .mock-block {
    min-height: 48px;
    padding: 10px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

.service-tiles .mock-block span {
    display: block;
    width: 18px;
    height: 4px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: #ffd52b;
}

.example-site--landscaping {
    background:
        radial-gradient(circle at 17% 28%, rgba(187, 212, 129, 0.82) 0 13%, transparent 14%),
        linear-gradient(135deg, #173f2c 0%, #285f42 68%, #eef4df 68%, #eef4df 100%);
    color: #173f2c;
}

.example-site--landscaping .mock-nav span,
.example-site--landscaping .mock-hero p {
    color: #173f2c;
}

.example-site--landscaping .mock-nav span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(23, 63, 44, 0.78);
    color: #ffffff;
}

.example-site--landscaping .mock-hero {
    padding: 10px 18px 0;
}

.leaf-mark {
    width: 34px;
    height: 22px;
    display: block;
    margin-bottom: 10px;
    border-radius: 34px 34px 34px 0;
    background: #b9d876;
    transform: rotate(-24deg);
    box-shadow: 20px 8px 0 rgba(238, 244, 223, 0.75);
}

.example-site--landscaping .mock-cta {
    background: #eef4df;
    color: #173f2c;
}

.garden-gallery {
    padding: 12px 18px 18px;
    align-items: flex-end;
}

.garden-gallery .mock-block {
    min-height: 54px;
    border-radius: 7px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #78a75d, #244d35);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.garden-gallery .mock-block:nth-child(2) {
    min-height: 74px;
    background: linear-gradient(135deg, #d9c594, #4e7f4f);
}

.garden-gallery .mock-block:nth-child(3) {
    min-height: 62px;
    background: linear-gradient(135deg, #8ab96b, #173f2c);
}

.card-footer {
    text-align: left;
}

.card-footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #0f172a;
}

.card-footer p {
    font-size: 14px;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.example-label {
    display: inline-block;
    font-size: 11px;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.section-examples .cta-panel {
    text-align: center;
    padding: 80px 40px;
    background: var(--card-bg);
    border-radius: 40px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
    max-width: none;
}

.section-examples .cta-panel h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-examples .cta-panel p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

.section-examples .btn-primary {
    width: auto;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.section-examples .btn-primary:hover {
    background-color: #0055e0;
    transform: translateY(-2px);
}

.faq-section {
    padding: var(--container-padding);
    max-width: var(--faq-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
}

.faq-header .badge {
    background-color: #E6F0FF;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.faq-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.accordion-item:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
}

.accordion-header:hover {
    background-color: #fafafa;
}

.icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.icon-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition-smooth);
}

.accordion-item.active .icon-wrapper {
    transform: rotate(45deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.content-inner {
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.accordion-item.active .content-inner {
    opacity: 1;
    padding-bottom: 24px;
}

.content-inner p {
    padding: 0 32px 24px 32px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
}

.faq-section .cta-panel {
    margin-top: 80px;
    padding: 60px 40px;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    text-align: center;
    width: 100%;
    max-width: none;
}

.faq-section .cta-panel h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-section .cta-panel p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.faq-section .btn-primary {
    width: auto;
    padding: 16px 40px;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.faq-section .btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.02);
}

.contact-section {
    padding: 120px 24px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.contact-header-group {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header-group .badge {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-header-group .headline {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text-main);
    margin-left: auto;
    margin-right: auto;
}

.contact-header-group .subheading {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.form-container {
    background: transparent;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-input);
    transition: var(--transition);
    background-color: #fafafa;
}

.form-input:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-input);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.is-sent {
    background-color: #22c55e;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 40px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-main);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-main);
}

.info-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.info-card-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-detail {
    margin-bottom: 16px;
}

.footer-detail label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-detail span {
    font-weight: 500;
    color: var(--text-main);
}

.footer-detail a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.footer-detail a:hover {
    text-decoration: underline;
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.honeypot {
    display: none;
}

.section-wrapper {
    padding: 120px 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.section-wrapper > .badge {
    padding: 6px 16px;
    font-weight: 600;
}

.headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.subheading {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 64px;
}

.cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-description {
    font-size: 15px;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    background-color: var(--border-light);
    margin-bottom: 48px;
    width: 100%;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.check-icon {
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
}

.site-footer {
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
    padding: 56px 24px 32px;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact a,
.privacy-note a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover,
.privacy-note a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-contact span {
    color: var(--text-muted);
}

.privacy-note {
    max-width: var(--container-max-width);
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.privacy-note h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.privacy-note p {
    max-width: 840px;
    color: var(--text-muted);
    font-size: 14px;
}

.thanks-page {
    min-height: 100vh;
    background: #f8fafc;
}

.thanks-main {
    min-height: 100vh;
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-panel {
    margin-top: 32px;
    padding: 56px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.thanks-panel h1 {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.thanks-panel p {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .hero {
        min-height: auto;
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero__subheading {
        margin: 0 auto 48px auto;
    }

    .hero__actions {
        justify-content: center;
    }

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

    .hero__visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-container {
        position: relative;
        right: 0;
        top: 0;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

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

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

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

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

    .info-card {
        position: static;
    }

    .contact-section {
        padding: 80px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu,
    .nav-actions > .cta-button {
        display: none;
    }

    .mobile-overlay .nav-link {
        display: block;
    }

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

    .pricing-card.featured {
        grid-column: span 1;
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--nav-height) + 24px) 20px 60px;
    }

    .hero__headline {
        font-size: 40px;
    }

    .hero__trust-list {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .btn {
        width: 100%;
    }

    .browser-content {
        min-height: 400px;
    }

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

    .services-section {
        padding: 80px 24px;
    }

    .cta-panel {
        padding: 48px 24px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-section .headline {
        font-size: 36px;
    }

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

    .section-header h2 {
        font-size: 40px;
    }

    .section-examples .cta-panel {
        border-radius: 24px;
    }

    .faq-header h2 {
        font-size: 36px;
    }

    .faq-section .cta-panel {
        padding: 40px 24px;
    }

    .contact-header-group .headline {
        font-size: 36px;
    }

    .form-container {
        padding: 0 10px;
    }

    .thanks-panel {
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-wrapper {
        padding: 80px 20px;
    }

    .features-row {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .example-card {
        padding: 18px;
    }

    .section-examples .browser-mockup {
        aspect-ratio: 1 / 1.08;
        margin-bottom: 24px;
    }

    .mock-nav {
        padding: 12px 14px;
        font-size: 8px;
    }

    .mock-nav strong {
        font-size: 12px;
    }

    .mock-nav span {
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mock-hero h1 {
        font-size: 19px;
    }

    .example-site--builder .mock-hero {
        grid-template-columns: 1fr;
        padding: 10px 14px 0;
    }

    .builder-frame {
        min-height: 78px;
    }

    .house-shape {
        height: 36px;
        bottom: 12px;
    }

    .builder-stats,
    .service-tiles,
    .garden-gallery {
        padding: 10px 14px 14px;
    }

    .builder-stats .mock-block,
    .service-tiles .mock-block {
        min-height: 38px;
    }
}
