@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
    --primary-teal: #009688;
    --primary-teal-rgb: 0, 150, 136;
    --secondary-green: #4caf50;
    --secondary-green-rgb: 76, 175, 80;
    --neutral-light: #eeeeee;
    --text-dark: #212121;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --border-alpha: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--neutral-light);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
.btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Refined Background System --- */
.blueprint-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    /* Fixed so it's always there */
    top: 2rem;
    right: 2rem;
    /* Anchored to top right */
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    /* Align to right */
}

.floating-nav {
    pointer-events: auto;
    background: rgba(238, 238, 238, 0.7);
    /* Branded Glassmorphism */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.6rem 2.2rem;
    padding-right: 0.6rem;
    border-radius: 50px;
    /* Fully rounded capsule */
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header a {
    text-decoration: none;
}

/* Obsolete Logo Styles Removed */

header nav a {
    font-weight: 700;
    font-size: 1rem;
    /* Larger for legibility */
    color: var(--text-dark) !important;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

header nav a:hover {
    color: var(--primary-teal) !important;
}

header nav a:hover::after {
    width: 100%;
}

/* --- Layout Components --- */
section {
    padding: 1rem 0rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    width: 100%;
    max-width: 100%;
    /* Override global section constraint */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Removing padding for edge-to-edge finish */
    overflow: hidden;
    position: relative;
    background: linear-gradient(-70deg, var(--primary-teal), var(--secondary-green));
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-text {
    position: absolute;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    /* White for better contrast on branded gradient */
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.hero-logo-wrapper svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    flex: 1.2;
    text-align: left !important;
    z-index: 2;
    color: white;
    /* Ensure text is white for contrast */
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.hero h1 span {
    color: inherit;
    opacity: 1;
}

/* --- Data Gravity Reveal Effect --- */
.hero h1.gravity-text {
    opacity: 1;
    color: white !important;
    -webkit-text-fill-color: white !important;
    overflow: visible;
}

.hero h1.gravity-text span.char {
    display: inline-block;
    will-change: transform, opacity, filter;
}

.perspective-text span {
    display: inline-block;
}

.hero-actions {
    margin-top: 2.5rem;
}

.hero-actions .btn {
    background: white;
    color: var(--text-dark);
}

.hero-actions .btn:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
}

/* --- Modern Service Pillars --- */
#services {
    width: 100%;
    max-width: 100%;
    /* Edge to edge background */
    padding: 1rem 0 10rem 0;
    /* Reduced top padding to move it up */
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-card:hover .service-icon {
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.tech-card p {
    color: rgba(33, 33, 33, 0.7);
    font-size: 1rem;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* --- Detailed Services: Digital Ecosystem Bento --- */
#services {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "hosting dev"
        "hosting support";
    gap: 1.5rem;
}

.bento-tile {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Animated Blueprint Pattern Background */
.bento-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: blueprintFloat 20s linear infinite;
}

@keyframes blueprintFloat {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.bento-tile * {
    position: relative;
    z-index: 1;
}

/* Hover States: Luminous Glow */
.bento-tile:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 60px rgba(0, 150, 136, 0.1);
    transform: translateY(-5px);
}

/* Grid Area Assignments */
.tile-hosting { grid-area: hosting; }
.tile-dev { grid-area: dev; }
.tile-support { grid-area: support; }

/* Tile Header & Badges */
.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bento-icon {
    width: 40px;
    height: 40px;
    opacity: 1; /* Full opacity for brand colors */
}

/* Branded Gradient Icons (Targeting Stroke for Line Icons) */
.bento-icon path,
.bento-icon circle,
.bento-icon rect,
.bento-icon line,
.bento-icon polyline {
    stroke: url(#brand-gradient) !important;
}

/* Fallback for solid parts if any */
.bento-icon path[fill^="#"],
.bento-icon circle[fill^="#"] {
    fill: url(#brand-gradient) !important;
}

.tile-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-teal);
    background: rgba(0, 150, 136, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.bento-tile h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: var(--primary-teal) !important;
    transition: color 0.3s ease;
}

.bento-tile:hover h3 {
    color: var(--secondary-green) !important;
}

/* List Styling */
.bento-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bento-list li {
    font-size: 0.95rem;
    color: rgba(33, 33, 33, 0.7);
    padding-left: 1.2rem;
    position: relative;
}

.bento-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

/* Metric Tiles: Termial Aesthetic */
.tile-metric {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
}

.metric-value {
    font-family: 'Courier New', Courier, monospace; /* Suggested technical font */
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.6;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.metric-ping {
    width: 8px;
    height: 8px;
    background: var(--secondary-green);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 0 10px var(--secondary-green);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "hosting"
            "dev"
            "support";
    }
}

@media (max-width: 768px) {
    .services-bento-grid {
        display: flex;
        flex-direction: column;
    }
}

/* --- Smooth Zig-Zag Process Timeline --- */
#process {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.timeline-wrapper {
    position: relative;
    height: 320px;
    margin: 4rem 0;
}

.timeline-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.timeline-nodes {
    display: block;
    height: 100%;
    position: relative;
    z-index: 2;
}

.timeline-node {
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.timeline-node[data-phase="01"] {
    left: 10%;
}

.timeline-node[data-phase="02"] {
    left: 30%;
}

.timeline-node[data-phase="03"] {
    left: 50%;
}

.timeline-node[data-phase="04"] {
    left: 70%;
}

.timeline-node[data-phase="05"] {
    left: 90%;
}

.node-dot {
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid var(--primary-teal);
    border-radius: 50%;
    position: absolute;
    top: var(--y-offset);
    left: 0;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(var(--primary-teal-rgb), 0.1);
    z-index: 4;
}

.timeline-node:hover .node-dot {
    background: var(--primary-teal);
    box-shadow: 0 0 0 10px rgba(var(--primary-teal-rgb), 0.1);
    transform: translate(-50%, -50%) scale(1.3);
}

.node-bubble {
    position: absolute;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    width: 180px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3;
    left: 0;
    transform: translateX(-50%);
}

/* Positioning Bubbles (Balanced Alternation Strategy - 1,3,5 Above / 2,4 Below) */
.timeline-node[data-phase="01"] .node-bubble,
.timeline-node[data-phase="03"] .node-bubble,
.timeline-node[data-phase="05"] .node-bubble {
    bottom: calc(100% - var(--y-offset) + 2.5rem);
}

.timeline-node[data-phase="02"] .node-bubble,
.timeline-node[data-phase="04"] .node-bubble {
    top: calc(var(--y-offset) + 2.5rem);
}

/* Tooltip Arrow */
.node-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    left: 50%;
    transform: translateX(-50%);
}

/* Arrow for Bubbles ABOVE the dot */
.timeline-node[data-phase="1"] .node-bubble::after,
.timeline-node[data-phase="3"] .node-bubble::after,
.timeline-node[data-phase="5"] .node-bubble::after,
.timeline-node[data-phase="01"] .node-bubble::after,
.timeline-node[data-phase="03"] .node-bubble::after,
.timeline-node[data-phase="05"] .node-bubble::after {
    bottom: -8px;
    border-top: 8px solid white;
}

/* Arrow for Bubbles BELOW the dot */
.timeline-node[data-phase="2"] .node-bubble::after,
.timeline-node[data-phase="4"] .node-bubble::after,
.timeline-node[data-phase="02"] .node-bubble::after,
.timeline-node[data-phase="04"] .node-bubble::after {
    top: -8px;
    border-bottom: 8px solid white;
}

.node-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    opacity: 1;
}

.node-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.node-bubble h3 {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.node-bubble p {
    font-size: 0.72rem;
    line-height: 1.4;
    color: rgba(33, 33, 33, 0.7);
}

/* Hover Effect */
.timeline-node:hover .node-bubble {
    transform: translateX(-50%) translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.timeline-node[data-phase="02"]:hover .node-bubble,
.timeline-node[data-phase="04"]:hover .node-bubble {
    transform: translateX(-50%) translateY(6px);
}

/* Responsive */
@media (max-width: 1100px) {
    #process {
        padding: 10rem 0;
    }

    .timeline-wrapper {
        height: auto;
        margin: 0;
    }

    .timeline-svg {
        display: none;
    }

    .timeline-nodes {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
        padding-left: 2rem;
    }

    .timeline-node {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }

    .node-dot {
        position: static;
        margin-right: 2rem;
        margin-top: 2rem;
        transform: none;
        flex-shrink: 0;
    }

    .node-bubble {
        position: static;
        width: 100%;
        text-align: left;
        transform: none !important;
        padding: 2rem;
    }

    .node-bubble::after {
        display: none;
    }

    .node-icon {
        margin: 0 0 1rem 0;
    }
}

/* --- Professional Buttons --- */
.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: linear-gradient(-70deg, var(--primary-teal), var(--secondary-green));
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(var(--primary-teal-rgb), 0.15);
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header .btn {
    background: linear-gradient(-70deg, var(--primary-teal), var(--secondary-green));
    color: white !important;
    /* Force white for contrast */
    padding: 0.7rem 2rem;
    box-shadow: 0 4px 15px rgba(var(--primary-teal-rgb), 0.2);
    position: relative;
    overflow: hidden;
    /* Ensure clean lift */
}

/* Specific override to hide the generic nav underline for the button */
header .btn::after {
    display: none !important;
}

header .btn:hover {
    filter: brightness(1.1);
    transform: translateY(-4px);
    /* Increased lift from -2px for visibility */
    box-shadow: 0 12px 25px rgba(var(--primary-teal-rgb), 0.35);
    color: white !important;
    /* Prevent generic hover color override */
}

/* --- Contact Section: Premium Brand Hub --- */
.premium-contact-section {
    position: relative;
    width: 100% !important;
    /* Override global section width */
    max-width: 100% !important;
    /* Override global section max-width */
    padding: 8rem 0;
    background: var(--neutral-light);
    /* Light Brand Background */
    color: var(--text-dark);
    overflow: hidden;
    z-index: 1;
}

/* Background grid for technical depth */
.contact-blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* 50/50 Split Container */
.contact-split-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-split-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 6rem;
    }
}

/* Left Pane: Branding & Typography */
.contact-left-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-massive-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(33, 33, 33, 0.7);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

/* Right Pane: Glass Form */
.contact-right-pane {
    flex: 1;
    width: 100%;
    max-width: 600px;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-group.dual-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-group.dual-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.glass-form input,
.glass-form textarea {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.2rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Roboto', sans-serif !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(33, 33, 33, 0.4);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.glass-form textarea {
    resize: vertical;
    min-height: 150px;
    border-radius: 16px;
}

/* Glass Focus State */
.glass-form input:focus,
.glass-form textarea:focus {
    outline: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--primary-teal) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-teal-rgb), 0.15) !important;
}

.form-feedback {
    min-height: 24px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: -1rem;
    letter-spacing: 1px;
}

.form-feedback.success {
    color: var(--primary-teal);
}

.form-feedback.error {
    color: #ff3366;
}

.contact-actions {
    margin-top: 1rem;
}

.contact-btn {
    width: 100%;
    position: relative;
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    background: linear-gradient(-70deg, var(--primary-teal), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(var(--primary-teal-rgb), 0.2);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(var(--primary-teal-rgb), 0.35);
    filter: brightness(1.1);
}

.contact-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    vertical-align: middle;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 100%;
    height: 100%;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}


.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(var(--primary-teal-rgb), 0.05);
    border-radius: 100px;
    border: 1px solid rgba(var(--primary-teal-rgb), 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-teal);
    animation: badge-pulse 2s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Compact Brand Footer --- */
footer {
    background: var(--neutral-light);
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Faint separation */
    font-family: 'Roboto', sans-serif;
}

.footer-compact-row {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
    /* Keep it subtle to not distract from the CTA */
    transition: opacity 0.3s ease;
}

footer:hover .footer-compact-row {
    opacity: 1;
    /* Slight highlight if user focuses on footer */
}

.footer-left {
    display: flex;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-slogan {
    color: var(--primary-teal);
}

.footer-right {
    display: flex;
    gap: 0.75rem;
    font-weight: 500;
}

.footer-divider {
    opacity: 0.3;
}

/* Responsive Footer Stacking */
@media (max-width: 800px) {
    section {
        padding: 6rem 1.5rem;
    }

    .footer-compact-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-divider {
        display: none;
    }
}