:root {
    --primary-dark: #0c1625;
    --secondary-dark: #162236;
    --tertiary-dark: #1e2e44;
    --accent-cyan: #06b6d4;
    --accent-light-cyan: #22d3ee;
    --accent-purple: #a78bfa;
    --text-light: #f1f5f9;
    --text-muted: #cbd5e1;
    --bg-gradient-1: #0c1625;
    --bg-gradient-2: #162236;
    --accent-cyan-10: rgba(6, 182, 212, 0.1);
    --accent-cyan-20: rgba(6, 182, 212, 0.2);
    --accent-cyan-40: rgba(6, 182, 212, 0.4);
    --card-bg: rgba(30, 41, 59, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-cyan-10);
    will-change: transform;
    transform: translateZ(0);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo img {
    width: auto;
    height: 55px;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-light-cyan);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

ul {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    line-height: 1.7;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.logo:hover {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: var(--accent-cyan);
}

.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes navLinkFadeIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 968px) {
    nav {
        position: fixed;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background: rgba(15, 23, 42, 0.88);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(6, 182, 212, 0.12);
        border-top: none;
        border-right: none;
        border-radius: 0 0 0 10px;
        padding: 0.4rem 0 0.5rem;
        gap: 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                    0 0 20px rgba(6, 182, 212, 0.04);
    }

    .nav-links.open {
        display: flex;
        animation: navSlideDown 0.3s ease forwards;
    }

    .nav-links.open li {
        opacity: 0;
        animation: navLinkFadeIn 0.3s ease forwards;
    }

    .nav-links.open li:nth-child(1) { animation-delay: 0.04s; }
    .nav-links.open li:nth-child(2) { animation-delay: 0.07s; }
    .nav-links.open li:nth-child(3) { animation-delay: 0.10s; }
    .nav-links.open li:nth-child(4) { animation-delay: 0.13s; }
    .nav-links.open li:nth-child(5) { animation-delay: 0.16s; }
    .nav-links.open li:nth-child(6) { animation-delay: 0.19s; }
    .nav-links.open li:nth-child(7) { animation-delay: 0.22s; }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
        width: 100%;
        font-size: 0.95rem;
        border-radius: 6px;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
        border-left: 2px solid transparent;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(6, 182, 212, 0.06);
        padding-left: 1.15rem;
    }

    .nav-links a.active {
        color: var(--accent-cyan);
        background: var(--accent-cyan-10);
        border-left-color: var(--accent-cyan);
        padding-left: 1.15rem;
    }
}

footer {
    padding: 3rem 5%;
    background: #121c2c;
    text-align: center;
    border-top: 1px solid var(--accent-cyan-10);
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    margin: 0.25rem 0;
    font-size: 0.8rem;
}

footer p a {
    color: var(--text-muted);
    text-decoration: none;
}

footer p a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.section-alt {
    padding: 6rem 5%;
    background: rgba(67, 86, 119, 0.5);
    position: relative;
}

.section-base {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0c1625, #162236);
    position: relative;
}

.section-alt .content,
.section-base .content {
    padding-top: 0;
    padding-bottom: 0;
}

.simple-nav .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 6rem 5%;
}

.simple-nav .section-base:first-of-type .content {
    padding-top: 160px;
}

.simple-nav .last-updated {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}


@media (hover: hover) {
    body::before {
        content: '';
        position: fixed;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                rgba(6, 182, 212, 0.15) 0%,
                transparent 50%);
        pointer-events: none;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body:hover::before {
        opacity: 1;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 180px 5% 8rem 5%;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;

}

.hero-image {
    display: flex;
    justify-content: flex-start;
    animation: heroFloat 4s ease-in-out infinite;
    grid-column: 1;
    grid-row: 1 / span 3;
}

.hero-lottie {
    width: 100%;
    min-height: 400px;
    transition: transform 0.3s ease;
}

.hero-lottie:hover {
    transform: scale(1.08);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-title,
.hero-description,
.cta-buttons {
    grid-column: 2;
    justify-self: start;
    width: 100%;
    max-width: 700px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(135deg, #ffffff, var(--accent-light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    max-width: 700px;
    margin-bottom: 0;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-light-cyan);
    border: 1.5px solid rgba(6, 182, 212, 0.4);
    box-shadow: none;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
    transform: translateY(-2px);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent);
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(calc(100vw - 500px), -200px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(calc(-100vw + 400px), 150px) scale(1.15);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-300px, calc(50vh - 300px)) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.floating-1 {
    width: 400px;
    height: 400px;
    top: 15%;
    left: 10%;
    animation: float1 12s ease-in-out infinite;
    will-change: transform;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-2 {
    width: 350px;
    height: 350px;
    top: 60%;
    right: 5%;
    animation: float2 15s ease-in-out infinite;
}

.floating-3 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 45%;
    animation: float3 10s ease-in-out infinite;
}


.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-cyan);
    text-decoration: none;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
    display: flex;
}

.scroll-hint:hover {
    opacity: 1;
    text-decoration: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.services {
    padding: 10rem 5%;
    background: linear-gradient(160deg, #1e3450 0%, #2c4668 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header h2.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 23, 42, 0.5));
    border: 1px solid var(--accent-cyan-10);
    transition: transform 0.3s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.service-card.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-cyan-10), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px var(--accent-cyan-20);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--accent-light-cyan);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.why-monoweb {
    padding: 10rem 5%;
    background: linear-gradient(180deg, #101828 0%, #182438 55%, #101828 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-monoweb .section-header {
    position: relative;
    z-index: 2;
}

.why-monoweb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(16, 24, 40, 0.7) 40%, rgba(16, 24, 40, 0.95) 50%, rgba(16, 24, 40, 1) 60%);
    pointer-events: none;
    z-index: 1;
}

.why-monoweb::after {
    content: '<meta name="viewport" content="width=device-width, initial-scale=1.0">\A<link rel="stylesheet" href="assets/css/styles.css">\A\A:root {\A  --primary-dark: #0f172a;\A  --accent-cyan: #06b6d4;\A  --text-light: #f1f5f9;\A}\A\Abody {\A  font-family: "Inter", sans-serif;\A  background-color: var(--primary-dark);\A  color: var(--text-light);\A  line-height: 1.7;\A}\A\A.hero {\A  display: flex;\A  align-items: center;\A  padding: 4rem 2rem;\A}\A\A@media (max-width: 768px) {\A  .container {\A    padding: 1rem;\A  }\A}\A\A<meta name="viewport" content="width=device-width, initial-scale=1.0">\A<link rel="stylesheet" href="assets/css/styles.css">\A\A:root {\A  --primary-dark: #0f172a;\A  --accent-cyan: #06b6d4;\A  --text-light: #f1f5f9;\A}\A\Abody {\A  font-family: "Inter", sans-serif;\A  background-color: var(--primary-dark);\A  color: var(--text-light);\A  line-height: 1.7;\A}\A\A.hero {\A  display: flex;\A  align-items: center;\A  padding: 4rem 2rem;\A}\A\A@media (max-width: 768px) {\A  .container {\A    padding: 1rem;\A  }\A}';
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    max-width: 900px;
    height: 200%;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(6, 182, 212, 0.35);
    white-space: pre;
    pointer-events: none;
    z-index: 0;
    animation: matrixFall 20s linear infinite;
    overflow: visible;
    letter-spacing: 0.03em;
    padding-left: 10%;
}

@keyframes matrixFall {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(-50%, 0%);
    }
}

.comparison-table-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow-x: auto;
}

.why-monoweb > .btn {
    margin-top: 3rem;
    z-index: 2;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-cyan-20);
    table-layout: fixed;
}

.comparison-table thead th {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-cyan-20);
    position: relative;
    line-height: 1.2;
    width: 33.33%;
}

.diy-header {
    background: rgba(30, 41, 59, 0.4);
    color: var(--text-muted);
    border-right: 1px solid rgba(203, 213, 225, 0.1);
}

.diy-header::before {
    content: '×';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(203, 213, 225, 0.5);
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1;
}

.agency-header {
    background: rgba(30, 41, 59, 0.3);
    color: var(--text-muted);
    border-right: 1px solid rgba(203, 213, 225, 0.1);
}

.agency-header::before {
    content: '~';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(203, 213, 225, 0.5);
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1;
}

.monoweb-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), var(--card-bg));
    color: var(--accent-light-cyan);
}

.monoweb-header::before {
    content: '✓';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.05);
}

.comparison-table td {
    padding: 1.5rem 2rem;
    line-height: 1.7;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
    position: relative;
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.diy-cell {
    background: rgba(30, 41, 59, 0.2);
    border-right: 1px solid rgba(203, 213, 225, 0.1);
}

.agency-cell {
    background: rgba(30, 41, 59, 0.15);
    border-right: 1px solid rgba(203, 213, 225, 0.1);
}

.monoweb-cell {
    background: rgba(6, 182, 212, 0.03);
}

@media (max-width: 968px) {
    .comparison-table thead th {
        font-size: 1.3rem;
        padding: 1.5rem 1rem;
    }

    .comparison-table td {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }

    .diy-header::before,
    .agency-header::before,
    .monoweb-header::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .comparison-table thead th {
        font-size: 1rem;
        padding: 1rem 0.6rem;
    }

    .comparison-table td {
        padding: 0.9rem 0.6rem;
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.process {
    padding: 10rem 5%;
    background: linear-gradient(145deg, #0e1e28 0%, #162c38 100%);
    position: relative;
    overflow: hidden;
}

.process::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(6, 182, 212, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-cyan-10);
    transform: translateX(-50%);
}

.process-timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: calc(var(--timeline-fill, 0) * 100%);
    width: 4px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    transform: translateX(-50%);
    transition: height 0.15s linear;
}

.timeline-spark {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: calc(var(--timeline-fill, 0) * 100%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light-cyan);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px 3px rgba(34, 211, 238, 0.6), 0 0 20px 6px rgba(34, 211, 238, 0.25);
    transition: top 0.15s linear;
    pointer-events: none;
}

.process-step {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50px);
}

.process-step.visible {
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.process-step:nth-child(even).visible {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.process-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--accent-cyan-10);
    transition: all 0.4s ease;
}

.process-content:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 10px rgba(15, 23, 42, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-step.reached .process-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 0 10px rgba(15, 23, 42, 0.5), 0 0 20px 5px rgba(34, 211, 238, 0.4);
}

.process-step.reached .process-content {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.process-timeline.completed .timeline-spark {
    animation: sparkComplete 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sparkComplete {
    0%   { transform: translate(-50%, -50%) scale(1);   box-shadow: 0 0 8px 3px rgba(34, 211, 238, 0.6), 0 0 20px 6px rgba(34, 211, 238, 0.25); }
    50%  { transform: translate(-50%, -50%) scale(4);   box-shadow: 0 0 20px 10px rgba(34, 211, 238, 0.9), 0 0 50px 20px rgba(34, 211, 238, 0.4); }
    100% { transform: translate(-50%, -50%) scale(2.5); box-shadow: 0 0 14px 6px rgba(34, 211, 238, 0.7), 0 0 35px 12px rgba(34, 211, 238, 0.3); }
}

.process-number .service-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    margin: 0;
    display: block;
}

.process-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-light-cyan);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.2;
}

.process-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.view-demos-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-cyan-20);
}

.view-demos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.about-strip {
    padding: 2.5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.06));
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
}

.pricing {
    padding: 10rem 5%;
    background: linear-gradient(160deg, #1e2c50 0%, #2c3e68 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.pricing-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-price::after {
    content: " AUD";
    font-size: 0.55em;
    font-weight: 600;
    margin-left: 0.1em;
}

.pricing-cards {
    display: flex;
    max-width: 850px;
    margin: 2rem auto 0;
    position: relative;
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 2px solid var(--accent-cyan-40);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-card:first-child {
    border-radius: 20px 0 0 20px;
    border-right: 1px solid rgba(203, 213, 225, 0.1);
}

.pricing-card:last-child {
    border-radius: 0 20px 20px 0;
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), var(--card-bg));
    border-color: var(--accent-cyan);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    padding: 0.25rem 0.9rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.pricing-card .pricing-price {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.pricing-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 0.55rem 0 0.55rem 1.8rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(203, 213, 225, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    position: absolute;
    left: 0;
    font-weight: 600;
}

.pricing-features li.included::before {
    content: '\2713';
    color: var(--accent-cyan);
}

.pricing-features li.not-included {
    color: rgba(203, 213, 225, 0.3);
    text-decoration: line-through;
}

.pricing-features li.not-included::before {
    content: '\2717';
    color: rgba(203, 213, 225, 0.3);
}

.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

.pricing-hosting {
    margin: 0.75rem -1.5rem 0;
    background: rgba(15, 23, 42, 0.92);
    border-top: 1px solid var(--accent-cyan-20);
    border-bottom: 1px solid var(--accent-cyan-20);
    padding: 0.55rem 1rem;
    text-align: center;
    color: var(--accent-light-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pricing-card:first-child .pricing-hosting {
    width: calc(200% + 6rem + 3px);
    position: relative;
    z-index: 3;
}

.pricing-card-featured .pricing-hosting {
    visibility: hidden;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.pricing > .cta-section {
    margin-top: 3rem;
}

@keyframes gradientShift {
    0% { transform: translateX(0); }
    50% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.contact {
    padding: 10rem 5%;
    background: linear-gradient(160deg, #1e3248 0%, #2c4462 100%);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(6, 182, 212, 0.05) 25%, rgba(139, 92, 246, 0.04) 50%, rgba(6, 182, 212, 0.05) 75%, transparent 100%);
    animation: gradientShift 12s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

.contact-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label .required {
    color: var(--accent-cyan);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.75rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--accent-cyan-20);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2306b6d4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: #141c28;
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
}

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

@media (max-width: 968px) {
    .hero {
        padding-top: 130px;
        min-height: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .hero-title {
        grid-column: 1;
        text-align: center;
        order: 1;
        margin-bottom: 0;
    }

    .hero-image {
        grid-column: 1;
        grid-row: auto;
        justify-content: center;
        margin: 0;
        order: 2;
    }

    .hero-description {
        grid-column: 1;
        text-align: center;
        order: 3;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        grid-column: 1;
        justify-content: center;
        order: 4;
    }

    .nav-links {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline::before,
    .process-timeline::after {
        left: 30px;
    }

    .timeline-spark {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .process-content {
        width: calc(100% - 100px);
        margin-left: 70px;
    }

    .process-number {
        left: 30px;
    }

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

    .floating-element {
        width: 150px;
        height: 150px;
        animation: gentlePulse 6s ease-in-out infinite;
    }

    .floating-2,
    .floating-3 {
        display: none;
    }

}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .pricing-cards {
        flex-direction: column;
        gap: 5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
        border: 2px solid var(--accent-cyan-40);
    }

    .pricing-card:first-child {
        border-radius: 20px;
        border-right: 2px solid var(--accent-cyan-40);
    }

    .pricing-card:last-child {
        border-radius: 20px;
    }

    .pricing-card:first-child .pricing-hosting {
        width: auto;
    }

    .pricing-card-featured .pricing-hosting {
        visibility: visible;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.55rem 0 0.55rem 1.8rem;
    }

    .pricing-card-header h3 {
        font-size: 1.7rem;
    }

    .pricing-card .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-hosting {
        margin-left: -1rem;
        margin-right: -1rem;
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }

    .hero-lottie {
        min-height: 0;
        max-width: 100%;
    }

    .logo img {
        height: 40px;
    }

}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
}

.scroll-top {
    position: fixed;
    bottom: max(2rem, env(safe-area-inset-bottom, 2rem));
    right: max(2rem, env(safe-area-inset-right, 2rem));
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

@media (max-width: 640px) {
    .scroll-top {
        bottom: max(1.5rem, calc(env(safe-area-inset-bottom, 0px) + 1rem));
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

.scroll-top::before {
    content: '↑';
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    background: rgba(30, 41, 59, 0.95);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: min(400px, calc(100vw - 2rem));
    text-align: center;
    backdrop-filter: blur(10px);
}

.notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.form-confirmation {
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
    text-align: center;
    opacity: 0;
    transform: translateY(8px) scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
    backdrop-filter: blur(10px);
}

.form-confirmation.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.form-confirmation-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.form-confirmation-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0 0 0.25rem;
}

.form-confirmation-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}


.faq {
    padding: 10rem 5%;
    background: linear-gradient(135deg, #121c2c 0%, #1a2838 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--accent-cyan-10);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
}

.faq-question {
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.05);
}

.faq-question h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.6s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.75rem 1.25rem 1.75rem;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.75rem 1.25rem 1rem 1.25rem;
    }
}

.info-banner {
    background: var(--accent-cyan-10);
    border-left: 3px solid var(--accent-cyan);
    padding: 0.75rem 1rem;
    margin: 2rem auto 0;
    border-radius: 5px;
    max-width: 600px;
}

.info-banner p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
    text-align: center;
    font-size: 0.9rem;
}


.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section-base:first-of-type .content {
    padding-top: 140px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step-section {
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--accent-cyan-10);
}

.step-section:last-of-type {
    border-bottom: none;
    margin-bottom: 3rem;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.step-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.package-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.package-box {
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 23, 42, 0.5));
    border: 2px solid var(--accent-cyan-20);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.package-box.featured {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), var(--card-bg));
}

.package-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.package-sections {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.package-extra {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.auto-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.auto-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--accent-cyan-10);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auto-item::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.auto-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 23, 42, 0.5));
    border: 1px solid var(--accent-cyan-10);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-cyan-20);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.addon-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.addon-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.addon-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.category-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-light-cyan);
    margin: 5rem 0 1.5rem 0;
    text-align: center;
}

.cta-section {
    text-align: center;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(139, 92, 246, 0.14));
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.35);
}

.cta-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.step-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .package-comparison {
        grid-template-columns: 1fr;
    }

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

    .addon-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-header {
        gap: 0.75rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.8rem;
    }
}


.service-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.icon-design-friendly {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M480-80q-82%200-155-31.5t-127.5-86Q143-252%20111.5-325T80-480q0-83%2032.5-156t88-127Q256-817%20330-848.5T488-880q80%200%20151%2027.5t124.5%2076q53.5%2048.5%2085%20115T880-518q0%20115-70%20176.5T640-280h-74q-9%200-12.5%205t-3.5%2011q0%2012%2015%2034.5t15%2051.5q0%2050-27.5%2074T480-80Zm0-400Zm-177%2023q17-17%2017-43t-17-43q-17-17-43-17t-43%2017q-17%2017-17%2043t17%2043q17%2017%2043%2017t43-17Zm120-160q17-17%2017-43t-17-43q-17-17-43-17t-43%2017q-17%2017-17%2043t17%2043q17%2017%2043%2017t43-17Zm200%200q17-17%2017-43t-17-43q-17-17-43-17t-43%2017q-17%2017-17%2043t17%2043q17%2017%2043%2017t43-17Zm120%20160q17-17%2017-43t-17-43q-17-17-43-17t-43%2017q-17%2017-17%2043t17%2043q17%2017%2043%2017t43-17ZM480-160q9%200%2014.5-5t5.5-13q0-14-15-33t-15-57q0-42%2029-67t71-25h70q66%200%20113-38.5T800-518q0-121-92.5-201.5T488-800q-136%200-232%2093t-96%20227q0%20133%2093.5%20226.5T480-160Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-mobile-friendly {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M320-480h320v-80H320v80Zm40%20140h240v-80H360v80ZM280-40q-33%200-56.5-23.5T200-120v-720q0-33%2023.5-56.5T280-920h400q33%200%2056.5%2023.5T760-840v124q18%207%2029%2022t11%2034v80q0%2019-11%2034t-29%2022v404q0%2033-23.5%2056.5T680-40H280Zm0-80h400v-720H280v720Zm0%200v-720%20720Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-setup-for-google {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M570-390q70-70%2070-170t-70-170q-70-70-170-70t-170%2070q-70%2070-70%20170t70%20170q70%2070%20170%2070t170-70Zm-212-28%20226-227-57-57-169%20170-85-84-57%2056%20142%20142Zm42%20178q-134%200-227-93T80-560q0-134%2093-227t227-93q134%200%20227%2093t93%20227q0%2056-17.5%20105.5T653-364l227%20228-56%2056-228-227q-41%2032-90.5%2049.5T400-240Zm0-320Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-fast-turnaround {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22m422-232%20207-248H469l29-227-185%20267h139l-30%20208ZM320-80l40-280H160l360-520h80l-40%20320h240L400-80h-80Zm151-390Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-no-fees {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22m424-312%20282-282-56-56-226%20226-114-114-56%2056%20170%20170ZM200-120q-33%200-56.5-23.5T120-200v-560q0-33%2023.5-56.5T200-840h560q33%200%2056.5%2023.5T840-760v560q0%2033-23.5%2056.5T760-120H200Zm0-80h560v-560H200v560Zm0-560v560-560Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-get-enquiries {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M324-111.5Q251-143%20197-197t-85.5-127Q80-397%2080-480t31.5-156Q143-709%20197-763t127-85.5Q397-880%20480-880t156%2031.5Q709-817%20763-763t85.5%20127Q880-563%20880-480t-31.5%20156Q817-251%20763-197t-127%2085.5Q563-80%20480-80t-156-31.5ZM707-253q93-93%2093-227t-93-227q-93-93-227-93t-227%2093q-93%2093-93%20227t93%20227q93%2093%20227%2093t227-93Zm-397-57q-70-70-70-170t70-170q70-70%20170-70t170%2070q70%2070%2070%20170t-70%20170q-70%2070-170%2070t-170-70Zm283-57q47-47%2047-113t-47-113q-47-47-113-47t-113%2047q-47%2047-47%20113t47%20113q47%2047%20113%2047t113-47Zm-169.5-56.5Q400-447%20400-480t23.5-56.5Q447-560%20480-560t56.5%2023.5Q560-513%20560-480t-23.5%2056.5Q513-400%20480-400t-56.5-23.5Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-share-details {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M440-280h80v-240h-80v240Zm68.5-331.5Q520-623%20520-640t-11.5-28.5Q497-680%20480-680t-28.5%2011.5Q440-657%20440-640t11.5%2028.5Q463-600%20480-600t28.5-11.5ZM480-80q-83%200-156-31.5T197-197q-54-54-85.5-127T80-480q0-83%2031.5-156T197-763q54-54%20127-85.5T480-880q83%200%20156%2031.5T763-763q54%2054%2085.5%20127T880-480q0%2083-31.5%20156T763-197q-54%2054-127%2085.5T480-80Zm0-80q134%200%20227-93t93-227q0-134-93-227t-227-93q-134%200-227%2093t-93%20227q0%20134%2093%20227t227%2093Zm0-320Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-choose-sections {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M440-120H200q-33%200-56.5-23.5T120-200v-560q0-33%2023.5-56.5T200-840h240v720Zm-80-80v-560H200v560h160Zm160-320v-320h240q33%200%2056.5%2023.5T840-760v240H520Zm80-80h160v-160H600v160Zm-80%20480v-320h320v240q0%2033-23.5%2056.5T760-120H520Zm80-80h160v-160H600v160ZM360-480Zm240-120Zm0%20240Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-design-review {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M756-120%20537-339l84-84%20219%20219-84%2084Zm-552%200-84-84%20276-276-68-68-28%2028-51-51v82l-28%2028-121-121%2028-28h82l-50-50%20142-142q20-20%2043-29t47-9q24%200%2047%209t43%2029l-92%2092%2050%2050-28%2028%2068%2068%2090-90q-4-11-6.5-23t-2.5-24q0-59%2040.5-99.5T701-841q15%200%2028.5%203t27.5%209l-99%2099%2072%2072%2099-99q7%2014%209.5%2027.5T841-701q0%2059-40.5%2099.5T701-561q-12%200-24-2t-23-7L204-120Z%22%2F%3E%3C%2Fsvg%3E");
}

.icon-go-live {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22m80-80%20200-560%20360%20360L80-80Zm132-132%20282-100-182-182-100%20282Zm370-246-42-42%20224-224q32-32%2077-32t77%2032l24%2024-42%2042-24-24q-14-14-35-14t-35%2014L582-458ZM422-618l-42-42%2024-24q14-14%2014-34t-14-34l-26-26%2042-42%2026%2026q32%2032%2032%2076t-32%2076l-24%2024Zm80%2080-42-42%20144-144q14-14%2014-35t-14-35l-64-64%2042-42%2064%2064q32%2032%2032%2077t-32%2077L502-538Zm160%20160-42-42%2064-64q32-32%2077-32t77%2032l64%2064-42%2042-64-64q-14-14-35-14t-35%2014l-64%2064ZM212-212Z%22%2F%3E%3C%2Fsvg%3E");
}

.about {
    padding: 5rem 5%;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.about-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-cyan);
    flex-shrink: 0;
}

.about-text h2 {
    margin-top: 0;
}

.about-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light-cyan);
    margin-bottom: 0.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

.recent-projects {
    padding: 10rem 5%;
    background: linear-gradient(180deg, #1c3048 0%, #2a4262 50%, #1c3048 100%);
    position: relative;
    overflow: hidden;
}

.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

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

.example-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: var(--card-bg);
    box-shadow: 0 2px 12px rgba(6, 182, 212, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 30px var(--accent-cyan-20);
}

.example-screenshot {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary-dark);
}

.example-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.example-card:hover .example-screenshot img {
    transform: scale(1.08);
}

.example-info {
    padding: 1rem 1.25rem;
}

.example-info strong {
    display: block;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.example-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-info {
    max-width: 850px;
    margin: 0 auto 2.5rem;
}

.contact-form .btn {
    width: 100%;
}

.business-card {
    background: var(--accent-cyan-10);
    border-left: 3px solid var(--accent-cyan);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.business-card p {
    margin: 0;
}

.business-card p + p {
    margin-top: 0.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: fit-content;
    max-width: calc(100vw - 48px);
    background: rgba(22, 34, 54, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-cyan-20);
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 16px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    z-index: 998;
    box-shadow: 4px 8px 32px rgba(0, 0, 0, 0.4);
    animation: cookieSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.dismissing {
    animation: cookieSlideOut 0.3s ease forwards;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookie-banner p a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 12px;
}

.cookie-banner p a:hover {
    text-decoration: underline;
}


.cookie-banner button {
    flex-shrink: 0;
    background: var(--accent-cyan);
    border: none;
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-banner button:hover {
    opacity: 0.85;
}

@keyframes cookieSlideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes cookieSlideOut {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.input-error {
    border-color: rgba(239, 68, 68, 0.6) !important;
}

.field-error {
    display: block;
    color: #f87171;
    font-size: 12px;
    margin-top: 4px;
}

