/* ============================================
   SNELGEMAAKT.NL - Stylesheet
   ============================================ */

:root {
    --color-bg: #0a0a0f;
    --color-bg-light: #12121a;
    --color-bg-card: #1a1a25;
    --color-text: #e8e8ef;
    --color-text-muted: #8888a0;
    --color-primary: #6c5ce7;
    --color-primary-light: #a29bfe;
    --color-accent: #00cec9;
    --color-accent-2: #fd79a8;
    --color-border: #2a2a3a;
    --color-white: #ffffff;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav--scrolled {
    border-bottom-color: var(--color-border);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 12px rgba(0, 206, 201, 0.4), 0 0 24px rgba(108, 92, 231, 0.2);
    animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
    0%, 100% { text-shadow: 0 0 12px rgba(0, 206, 201, 0.3), 0 0 24px rgba(108, 92, 231, 0.15); }
    50% { text-shadow: 0 0 18px rgba(0, 206, 201, 0.5), 0 0 36px rgba(108, 92, 231, 0.3); }
}
.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    filter: drop-shadow(0 0 6px rgba(0, 206, 201, 0.4));
}
.accent {
    color: var(--color-accent);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.95rem;
}
.nav__links a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}
.nav__links a:hover {
    color: var(--color-text);
}
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}
.nav__mobile {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
}
.nav__mobile a {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}
.nav__mobile.active {
    display: flex;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}
.btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}
.btn--large {
    padding: 16px 32px;
    font-size: 1.05rem;
}
.btn--full {
    width: 100%;
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.45);
}
.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 16px 32px;
    font-size: 1.05rem;
}
.btn--ghost:hover {
    border-color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
}
.btn--outline {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-primary);
    padding: 14px 28px;
    font-size: 1rem;
}
.btn--outline:hover {
    background: rgba(108, 92, 231, 0.1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: visible;
}
.hero__bg {
    position: absolute;
    inset: -100px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 70%);
}
.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}
.hero__shape--1 {
    width: 600px; height: 600px;
    background: var(--color-primary);
    top: -200px; right: -100px;
    animation: float 20s ease-in-out infinite;
}
.hero__shape--2 {
    width: 400px; height: 400px;
    background: var(--color-accent);
    bottom: -100px; left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}
.hero__shape--3 {
    width: 300px; height: 300px;
    background: var(--color-accent-2);
    top: 40%; left: 50%;
    animation: float 18s ease-in-out infinite 5s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
}
.hero__promo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.1), rgba(108, 92, 231, 0.08));
    border: 1px solid rgba(0, 206, 201, 0.35);
    border-radius: var(--radius);
    margin-bottom: 32px;
    max-width: 600px;
    animation: promo-glow 3s ease-in-out infinite;
}
@keyframes promo-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 206, 201, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 206, 201, 0.2); }
}
.hero__promo-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.hero__promo strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 2px;
}
.hero__promo span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}
.hero__promo .btn {
    flex-shrink: 0;
}
.btn--accent {
    background: var(--color-accent);
    color: var(--color-bg);
    font-weight: 700;
}
.btn--accent:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}
.hero__stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}
.section--dark {
    background: var(--color-bg-light);
}
.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 16px;
}
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section__desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card--featured {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--color-bg-card), rgba(108, 92, 231, 0.08));
    border-color: rgba(108, 92, 231, 0.2);
}
.service-card--featured::before {
    opacity: 1;
}
.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
    border: 1px solid rgba(108, 92, 231, 0.2);
    margin-bottom: 14px;
    color: var(--color-accent);
}
.service-card__icon svg {
    width: 22px;
    height: 22px;
}
.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.service-card__list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.service-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* ============================================
   STEPS
   ============================================ */
.steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.step:last-child {
    border-bottom: none;
}
.step__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(108, 92, 231, 0.2);
    line-height: 1;
    min-width: 80px;
}
.step:hover .step__number {
    color: var(--color-primary);
    transition: color var(--transition);
}
.step__content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step__content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.feature {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    transition: all var(--transition);
}
.feature:hover {
    border-color: rgba(0, 206, 201, 0.3);
    transform: translateY(-2px);
}
.feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.12), rgba(108, 92, 231, 0.08));
    border: 1px solid rgba(0, 206, 201, 0.15);
    margin-bottom: 16px;
    color: var(--color-accent);
}
.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin-inline: auto;
}
.portfolio-item + .portfolio-item {
    margin-top: 96px;
}
.portfolio-item--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}
.portfolio-item--reverse > * {
    direction: ltr;
}
.portfolio-item__mockup {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition);
}
.portfolio-item__mockup:hover {
    transform: scale(1.02);
}
.portfolio-item__mockup img {
    width: 100%;
    display: block;
}
.browser-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.browser-frame__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e8e8e8;
}
.browser-frame__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.browser-frame__dot--red { background: #ff5f57; }
.browser-frame__dot--yellow { background: #febc2e; }
.browser-frame__dot--green { background: #28c840; }
.browser-frame__url {
    margin-left: 12px;
    font-size: 0.8rem;
    color: #666;
    background: white;
    padding: 4px 16px;
    border-radius: 6px;
    flex-grow: 1;
    text-align: center;
    max-width: 300px;
}
.portfolio-item__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 206, 201, 0.15);
    border: 1px solid rgba(0, 206, 201, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 16px;
}
.portfolio-item__info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.portfolio-item__info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.portfolio-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.portfolio-item__tags li {
    padding: 6px 14px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .portfolio-item,
    .portfolio-item--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
}
.pricing-card--popular {
    border-color: var(--color-primary);
    background: linear-gradient(145deg, var(--color-bg-card), rgba(108, 92, 231, 0.1));
}
.pricing-card--popular:hover {
    transform: translateY(-4px);
}
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 100px;
}
.pricing-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.pricing-card__header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.pricing-card__price {
    margin-bottom: 32px;
}
.pricing-card__from {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}
.pricing-card__features {
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}
.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
}
.pricing-card__features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-card__features li:last-child {
    border-bottom: none;
}
.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: 60px 0;
}
.cta-box {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
}
.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-box p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-box__perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.cta-box__perks span::before {
    content: '✓ ';
    color: var(--color-accent);
    font-weight: 700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info__card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}
.contact-info__card--highlight {
    background: linear-gradient(145deg, var(--color-bg-card), rgba(0, 206, 201, 0.08));
    border-color: rgba(0, 206, 201, 0.3);
}
.contact-info__card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info__card a {
    color: var(--color-primary-light);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color var(--transition);
}
.contact-info__card a:hover {
    color: var(--color-accent);
}
.contact-info__card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--color-border);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer__admin {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.4;
    transition: opacity var(--transition);
}
.footer__admin:hover {
    opacity: 1;
}
.footer__copy {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* GARANTIE */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.06), rgba(108, 92, 231, 0.04));
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--radius);
    max-width: 800px;
    margin: 0 auto;
}
.guarantee-box__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.15), rgba(108, 92, 231, 0.1));
    color: var(--color-accent);
}
.guarantee-box__content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.guarantee-box__content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* TECH STACK */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.tech-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: var(--transition);
    min-width: 100px;
}
.tech-badge:hover {
    border-color: rgba(0, 206, 201, 0.3);
    background: rgba(0, 206, 201, 0.05);
    transform: translateY(-2px);
}
.tech-badge__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}
.tech-badge__desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.25);
}
.faq-item--open {
    border-color: rgba(0, 206, 201, 0.3);
    background: rgba(0, 206, 201, 0.03);
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    letter-spacing: -0.01em;
}
.faq-item__question:hover {
    color: var(--color-accent);
}
.faq-item__question svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--color-accent);
    opacity: 0.6;
}
.faq-item--open .faq-item__question svg {
    transform: rotate(180deg);
    opacity: 1;
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
    margin: 0 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .services {
        grid-template-columns: 1fr;
    }
    .service-card--featured {
        grid-column: auto;
    }
    .pricing {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .pricing-card--popular {
        transform: none;
    }
    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }
    .features {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__promo {
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero__promo .btn {
        width: 100%;
    }
    .hero__stats {
        gap: 20px;
    }
    .hero__stat-divider {
        display: none;
    }
    .step {
        flex-direction: column;
        gap: 12px;
    }
    .step__number {
        font-size: 2rem;
    }
    .cta-box {
        padding: 40px 24px;
    }
    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
