:root {
    --bg-main: #0c0a10;
    --bg-secondary: #14121a;
    --text-light: #f4f4f6;
    --text-muted: #c8c6d0;
    --accent-start: #ff66c4;
    --accent-end: #468bfd;
    --gradient-accent: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    --gradient-card: linear-gradient(180deg, #15131c, #0f0d14);
    --card-radius: 28px;
    --shadow-soft: 0 8px 22px rgba(0,0,0,0.32);
    --shadow-strong: 0 0 22px rgba(255,102,196,0.28), 0 0 32px rgba(70,140,255,0.32);
    --glass-border: rgba(255,255,255,0.09);
    scroll-behavior: smooth;
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0c0a10;
    color: #f8f9fb;
    padding: 12px 16px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
}

.consent-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.consent-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

.consent-button {
    border: 1px solid #7dd3fc;
    background: linear-gradient(135deg,#38bdf8,#22d3ee);
    color: #0b1020;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.consent-button.secondary {
    background: transparent;
    color: #e2e8f0;
    border-color: #475569;
}

/* Mobile CTA Button */
.mobile-cta {
    position: fixed;
    right: 16px;
    bottom: 22px;
    z-index: 1500;
    padding: 12px 18px;
    background: linear-gradient(135deg,#22d3ee,#38bdf8);
    color: #0b1020;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(34,211,238,0.35);
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

/* Pricing Section Styles */
.pricing-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

.pricing-box p {
    color: var(--text-muted);
}

.pricing-additional {
    font-size: 0.9rem;
    color: var(--accent-end);
}

.pricing-footer {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    max-width: 650px;
}

#privacy-note {
    color: var(--text-muted);
}

.consent-notice {
    color: var(--text-muted);
    margin-top: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent-end);
}

.consent-notice a {
    color: var(--accent-end);
    text-decoration: underline;
}

.consent-notice a:hover {
    color: var(--accent-start);
}

.footer-separator {
    color: var(--text-muted);
    margin: 0 8px;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

*::selection {
    background: rgba(255, 102, 196, 0.25);
    color: var(--text-light);
}

body {
    background: var(--bg-main);
    color: var(--text-light);
    font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.6;
    overflow-x: hidden;
}

.section-block {
    padding: 90px 0;
}

.section-block:nth-child(even) {
    background: #0f0d14;
}

.section-header,
h1, h2, h3, h4 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.01em;
}

img {
    border-radius: 14px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.navbar {
    background: rgba(10, 8, 14, 0.55);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    transition: 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 8, 14, 0.9);
    border-bottom-color: rgba(255,255,255,0.06);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--bg-secondary);
    color: var(--text-light);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 2000;
    transition: left 0.2s ease, box-shadow 0.2s ease;
}

.skip-link:focus {
    left: 14px;
    box-shadow: 0 0 0 3px rgba(70,140,255,0.35);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    margin: 0 8px;
    transition: 0.25s ease;
    position: relative;
}

.nav-link.active,
.nav-link.section-active {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after,
.nav-link.section-active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: var(--gradient-accent);
}

.nav-link:hover {
    color: var(--accent-end) !important;
}

/* Nav Divider - Visual separator before Tech Tips */
.nav-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
    margin: 0 12px;
    align-self: center;
}

/* Special styling for Tech Tips link */
.nav-link-special {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.nav-link-special:hover {
    opacity: 0.8;
}

.nav-link:focus-visible,
.btn:focus-visible,
.text-field:focus-visible {
    outline: 2px solid var(--accent-end);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(70,140,255,0.35);
}

#hero {
    position: relative;
    min-height: 48vh;
    padding: 70px 0 80px;
    background: radial-gradient(circle at 30% top, #221c2e, #0c0a10 70%);
    overflow: hidden;
    text-align: center;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 90px 90px, 140px 140px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

#hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 992px) {
    #hero {
        background-attachment: fixed;
    }
}

@keyframes floatTitle {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

#hero .title,
#hero .tagline,
#hero .hero-buttons {
    position: relative;
    z-index: 1;
}

#hero .title {
    font-size: 2.9rem;
    font-weight: 800;
    animation: floatTitle 6s ease-in-out infinite;
    letter-spacing: -0.02em;
    max-width: 960px;
    margin: 0 auto;
}

#hero .title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 52%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,102,196,0.22), rgba(70,139,255,0.15), transparent 70%);
    filter: blur(22px);
    z-index: -1;
    pointer-events: none;
}

#hero .tagline {
    font-size: 1.22rem;
    max-width: 720px;
    color: var(--text-muted);
    margin-top: 16px;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
    animation-delay: 0.35s;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
    animation-delay: 0.55s;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}

.hero-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: left;
}

.hero-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-end);
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-btn,
.hero-btn-outline {
    border-radius: 999px !important;
    padding: 12px 26px !important;
    font-weight: 600 !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.01em;
}

.hero-btn {
    background: var(--gradient-accent);
    border: none;
    color: #fff;
    text-decoration: none;
}

.hero-btn-outline {
    background: transparent !important;
    border: 2px solid var(--accent-start) !important;
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.hero-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.hero-btn-outline:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

#about p {
    font-size: 1.07rem;
    color: var(--text-muted);
    max-width: 640px;
}

#about strong {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card,
.pricing-box,
.flip-front,
.flip-back {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.service-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-box {
    padding: 28px;
}

.service-card:hover,
.pricing-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.15);
    box-shadow:
        0 12px 38px rgba(0,0,0,0.45),
        0 0 26px rgba(255,102,196,0.18),
        0 0 38px rgba(70,140,255,0.18);
}

.service-card h3 {
    font-size: 1.15rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0 6px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-subtext {
    color: var(--accent-start);
    margin-top: -10px;
    margin-bottom: 15px;
}

#how-it-works {
    padding-top: 70px;
}

.flip-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    max-width: 1300px;
    margin: 0 auto;
}

.flip-card {
    width: 260px;
    height: 340px;
    perspective: 1200px;
    transition: transform 0.35s ease;
}

.flip-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.flip-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.7s ease;
}

@media (hover:hover) {
    .flip-card:hover .flip-inner {
        transform: rotateY(180deg);
    }
}

@media (hover:none) {
    .flip-card:active .flip-inner,
    .flip-card:focus-within .flip-inner {
        transform: rotateY(180deg);
    }
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    padding: 38px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flip-back {
    transform: rotateY(180deg);
    padding: 30px;
}

.flip-front h4 {
    margin-top: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

.step-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-end), var(--accent-start));
    background-size: 200% 200%;
    animation: circleFlow 5.5s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.45rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    margin-bottom: 10px;
}

@keyframes circleFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.flip-steps-wrapper {
    gap: 32px;
}

@media (min-width: 576px) {
    .flip-card { width: 240px; }
    .flip-steps-wrapper { gap: 38px; }
}

@media (min-width: 768px) {
    .flip-card { width: 250px; }
    .flip-steps-wrapper { gap: 40px; }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .flip-steps-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .flip-card {
        width: 240px;
        height: 340px;
    }
}

@media (min-width: 1400px) {
    .flip-steps-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 45px;
    }
    .flip-card { width: 260px; }
}

#contact .section-header {
    margin-bottom: 35px;
}

.text-field {
    background: #18141f;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-light);
    padding: 10px 14px;
    border-radius: 10px;
}

.text-field:focus {
    border-color: var(--accent-end);
    background-color: var(--bg-secondary);
    box-shadow: 0 0 0 2px rgba(70,140,255,0.25);
}

.text-field::placeholder {
    color: #555;
}

.btn {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.25s ease;
    min-height: 44px; /* Minimum touch target size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

.btn:focus-visible {
    outline: 2px solid var(--accent-end);
    outline-offset: 2px;
}

#contact .col-lg-5:last-child {
    background: radial-gradient(circle at top left, #272132, #0f0d14 70%);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow-soft);
    padding: 28px 26px 22px;
}

@media (max-width: 991.98px) {
    #contact .col-lg-5:last-child {
        margin-top: 20px;
    }
}

.contact-info-block {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
    opacity: 0.95;
}

/* EMAIL ICON */
.email-item::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='url(%23grad)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff66c4'/%3E%3Cstop offset='100%25' stop-color='%23468bfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpolyline points='4 4 12 12 20 4'/%3E%3C/svg%3E");
}

/* FACEBOOK ICON */
.facebook-item::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='url(%23grad)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff66c4'/%3E%3Cstop offset='100%25' stop-color='%23468bfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

/* INSTAGRAM ICON */
.instagram-item::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='url(%23grad)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff66c4'/%3E%3Cstop offset='100%25' stop-color='%23468bfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='1.2' fill='url(%23grad)'/%3E%3C/svg%3E");
}

/* SOCIAL LINK STYLING */
.social-link {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 600;
}

.social-link:hover {
    filter: brightness(1.15);
}

.contact-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============================
   FOOTER
   ============================ */

.footer {
    padding: 55px 0 35px;
    background: var(--bg-secondary);
    color: var(--text-muted);
}

/* Footer Column Layout */
.footer-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 260px;
    line-height: 1.55;
}

/* --- Footer Navigation Column --- */

.footer-nav-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 8px;
}

.footer-nav-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.footer-nav-column a:hover {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Social Icons Column --- */

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    margin-top: 6px;
}

.footer-social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #18141f;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.45),
        0 0 22px rgba(255,102,196,0.18),
        0 0 32px rgba(70,139,255,0.18);
}

.footer-icon {
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

/* Facebook Icon */
.facebook-footer-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='url(%23grad)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff66c4'/%3E%3Cstop offset='100%25' stop-color='%23468bfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

/* Instagram Icon */
.instagram-footer-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='url(%23grad)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff66c4'/%3E%3Cstop offset='100%25' stop-color='%23468bfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='1.4' fill='url(%23grad)'/%3E%3C/svg%3E");
}

.footer-privacy-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--accent-end);
}

/* --- Footer Bottom --- */

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 15px;
}

/* --- Tablet Layout --- */
@media (min-width: 768px) and (max-width: 991.98px) {
    #hero .title {
        font-size: 2.4rem;
    }

    #hero .tagline {
        font-size: 1.15rem;
    }

    .hero-checklist {
        max-width: 600px;
        gap: 10px;
    }

    .section-block {
        padding: 70px 0;
    }

    .flip-card {
        width: 220px;
    }

    .service-card,
    .pricing-box {
        padding: 22px;
    }
}

/* --- Mobile Layout --- */

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .section-block {
        padding: 50px 0;
    }

    #hero {
        padding: 50px 16px 60px;
        min-height: auto;
    }

    #hero .title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    #hero .tagline {
        font-size: 1rem;
        padding: 0 8px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }

    .hero-checklist {
        font-size: 0.95rem;
        padding: 0 20px;
        gap: 10px;
        max-width: 100%;
    }

    .hero-checklist li {
        padding-left: 26px;
    }

    /* Services cards spacing */
    .service-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    /* Pricing cards */
    .pricing-box {
        padding: 24px 20px;
    }

    .pricing-intro,
    .pricing-footer {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    /* Flip cards mobile adjustments */
    .flip-card {
        width: 100%;
        max-width: 280px;
        height: 320px;
    }

    .flip-steps-wrapper {
        padding: 0 20px;
        gap: 24px;
    }

    /* Contact form */
    #contact .container {
        padding: 0 20px !important;
    }

    .contact-form {
        padding: 0;
    }

    .text-field {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-item {
        font-size: 0.95rem;
        word-break: break-word;
    }

    /* Footer */
    .footer {
        padding: 40px 0 25px;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-text {
        margin: 0 auto;
    }

    .footer-nav-column {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .footer-nav-column li {
        display: inline-block;
    }

    /* Section headers */
    .section-header {
        font-size: 1.85rem;
        margin-bottom: 20px;
    }

    /* Mobile CTA button positioning */
    .mobile-cta {
        right: 12px;
        bottom: 18px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Navbar improvements */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 1.15rem !important;
    }

    .navbar-nav {
        padding: 12px 0;
        gap: 4px;
    }

    .nav-link {
        padding: 10px 16px !important;
        margin: 0 !important;
    }

    /* Consent banner mobile */
    .consent-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }

    .consent-banner__actions {
        width: 100%;
        margin-left: 0;
    }

    .consent-button {
        flex: 1;
        padding: 10px 16px;
    }
}

/* ============================
   BLOG PAGE STYLES
   ============================ */

.blog-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post-card {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    padding: 28px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-card:hover {
    transform: translateX(8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow:
        0 12px 38px rgba(0,0,0,0.45),
        0 0 26px rgba(255,102,196,0.18),
        0 0 38px rgba(70,140,255,0.18);
}

.blog-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-date,
.blog-read-time {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-read-time::before {
    content: "•";
    margin-right: 8px;
    color: var(--accent-end);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.2s ease;
}

.blog-post-card:hover .read-more-link {
    transform: translateX(4px);
}

/* Newsletter signup box */
.newsletter-box {
    background: radial-gradient(circle at top left, #272132, #0f0d14 70%);
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    padding: 40px 35px;
}

.newsletter-box h3 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-box p {
    color: var(--text-muted);
}

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

.newsletter-input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    background: #18141f;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--accent-end);
    background-color: var(--bg-secondary);
    box-shadow: 0 0 0 2px rgba(70,140,255,0.25);
    outline: none;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-btn {
    background: var(--gradient-accent);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 10px;
    color: white;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.newsletter-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.newsletter-privacy-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
}

#newsletter-message {
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 8px;
}

#newsletter-message.success {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

#newsletter-message.error {
    background: rgba(255, 102, 196, 0.15);
    color: #ff66c4;
    border: 1px solid rgba(255, 102, 196, 0.3);
}

@media (max-width: 767.98px) {
    .newsletter-box {
        padding: 30px 24px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Resources section */
#resources .service-card h4 {
    font-size: 1.15rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#resources .service-card p {
    color: var(--text-muted);
}

/* Mobile adjustments for blog */
@media (max-width: 767.98px) {
    .blog-post-card {
        padding: 22px 20px;
    }

    .blog-post-card:hover {
        transform: translateX(4px);
    }

    .blog-post-card h3 {
        font-size: 1.25rem;
    }

    .blog-category {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .blog-excerpt {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .blog-read-time::before {
        content: "";
        margin-right: 0;
    }
}

/* ============================
   ARTICLE PAGE STYLES
   ============================ */

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-body h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 30px;
    color: var(--text-muted);
}

.article-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-body strong {
    color: var(--text-light);
    font-weight: 600;
}

.article-body code {
    background: rgba(255,255,255,0.08);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.95em;
    color: var(--accent-end);
    font-family: 'Courier New', monospace;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-end);
    padding-left: 24px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-to-blog:hover {
    color: var(--accent-end);
    transform: translateX(-4px);
}

@media (max-width: 767.98px) {
    .article-title {
        font-size: 1.8rem;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
    }
}
