/* --- CSS DESIGN SYSTEM (LIQUID GLASS UI) --- */

:root {
    /* Color Tokens (HSL harmonized) */
    --color-bg-dark: #07090e;
    --color-bg-light: #f8fafc;
    --color-card-dark: rgba(15, 23, 42, 0.45);
    --color-card-light: rgba(255, 255, 255, 0.45);
    --color-text-dark: #f8fafc;
    --color-text-light: #0f172a;
    --color-text-muted-dark: #94a3b8;
    --color-text-muted-light: #64748b;
    --color-border-dark: rgba(255, 255, 255, 0.12);
    --color-border-light: rgba(15, 23, 42, 0.08);

    /* Apple Palette */
    --color-primary: #5856d6;       /* Royal Violet */
    --color-secondary: #00c7be;     /* Teal Blue */
    --color-accent-pink: #ff2d55;   /* Rose Pink */
    --color-accent-orange: #ff9500; /* Warm Orange */
    --color-accent-yellow: #ffcc00; /* Accent Yellow */
    --color-accent-blue: #007aff;   /* Sky Blue */

    /* Gradients */
    --grad-glow: linear-gradient(135deg, var(--color-primary), var(--color-accent-pink));
    --grad-liquid: linear-gradient(135deg, #ff9500 0%, #ff2d55 50%, #5856d6 100%);
    --grad-chart: linear-gradient(180deg, rgba(0, 199, 190, 0.3) 0%, rgba(0, 199, 190, 0) 100%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme Active (Default Dark Mode) */
    --bg-body: var(--color-bg-dark);
    --bg-card: var(--color-card-dark);
    --text-main: var(--color-text-dark);
    --text-muted: var(--color-text-muted-dark);
    --border-color: var(--color-border-dark);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-glow-shadow: 0 10px 40px 0 rgba(88, 86, 214, 0.15);
}

/* Light Theme Variable Override */
html[data-theme="light"] {
    --bg-body: var(--color-bg-light);
    --bg-card: var(--color-card-light);
    --text-main: var(--color-text-light);
    --text-muted: var(--color-text-muted-light);
    --border-color: var(--color-border-light);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    --glass-glow-shadow: 0 10px 40px 0 rgba(88, 86, 214, 0.06);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- DYNAMIC BACKGROUND BLOBS --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.35;
    pointer-events: none;
    transition: all 0.5s ease;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: var(--color-primary);
    top: -100px;
    right: -50px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--color-secondary);
    top: 500px;
    left: -100px;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-pink);
    bottom: -150px;
    right: 50px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 8px;
}

.btn-primary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    backdrop-filter: blur(15px);
    box-shadow: var(--glass-shadow);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    background: var(--grad-glow);
    color: white;
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.35);
}

.btn-glow:hover {
    box-shadow: 0 12px 30px rgba(88, 86, 214, 0.65);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- TRANSPARENT FLOATING HEADER --- */
.glass-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

html[data-theme="light"] .glass-header {
    background: rgba(255, 255, 255, 0.35);
}

.glass-header.scrolled {
    top: 10px;
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

html[data-theme="light"] .glass-header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.logo span {
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
}

html[data-theme="light"] .theme-toggle-btn .sun-icon { display: none; }
html[data-theme="light"] .theme-toggle-btn .moon-icon { display: block; }
html[data-theme="dark"] .theme-toggle-btn .sun-icon { display: block; }
html[data-theme="dark"] .theme-toggle-btn .moon-icon { display: none; }

.mobile-menu-btn {
    display: none;
    background: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 170px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.badge-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(88, 86, 214, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(88, 86, 214, 0.2);
    padding: 6px 16px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1875rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.bullet-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

/* --- LIQUID GLASS HERO GRAPHIC --- */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-bg-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--grad-liquid);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.85;
    z-index: -1;
    animation: rotateLiquid 20s linear infinite;
}

.liquid-glass-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.95;
    position: relative;
}

/* Floating Testimonial Bubble inside Hero */
.glass-floating-bubble {
    position: absolute;
    top: -20px;
    left: -20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    gap: 12px;
    max-width: 280px;
    box-shadow: var(--glass-shadow);
    z-index: 10;
    animation: floatBubble 5s ease-in-out infinite alternate;
}

html[data-theme="light"] .glass-floating-bubble {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.1);
}

.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
}

.bubble-text .bubble-title {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.bubble-text .bubble-author {
    font-size: 0.6875rem;
    color: var(--color-secondary); /* Vibrant Teal in dark theme */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

html[data-theme="light"] .bubble-text .bubble-author {
    color: var(--color-primary); /* Vibrant Violet in light theme */
}

/* Main Statistics Glass Box */
.glass-stats-card {
    position: absolute;
    bottom: 20px;
    right: -10px;
    width: calc(100% - 20px);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

html[data-theme="light"] .glass-stats-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.1);
}

.stats-header {
    display: flex;
    background: rgba(0, 0, 0, 0.35);
    padding: 4px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .stats-header {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.stats-tab {
    flex: 1;
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e2e8f0; /* Off-white for high legibility */
    background: transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stats-tab:hover {
    color: var(--color-secondary);
}

.stats-tab.active {
    background: var(--color-secondary);
    color: #07090e;
    box-shadow: 0 4px 12px rgba(0, 199, 190, 0.25);
}

html[data-theme="light"] .stats-tab {
    color: #0f172a; /* Solid dark text */
}

html[data-theme="light"] .stats-tab:hover {
    color: var(--color-primary);
}

html[data-theme="light"] .stats-tab.active {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.25);
}

.stats-numeric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-large-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.stats-percentage-trend {
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 600;
}

/* Chart Canvas Area */
.chart-container {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-svg {
    width: 100%;
    height: 100px;
    overflow: visible;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pulse-ring {
    transform-origin: 270px 25px;
    animation: pulseGlow 2s infinite;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: #ffffff;
    font-weight: 700;
}

html[data-theme="light"] .chart-labels {
    color: #0f172a;
}

/* --- TRUST BANNER --- */
.trust-banner {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}

.trust-title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

/* --- PROCESS SECTION --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-glow-shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(88, 86, 214, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* --- PORTFOLIO GALLERY --- */
.portfolio-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.web-visual {
    background: linear-gradient(135deg, #1d1b4c, #131233);
}

.social-visual {
    background: linear-gradient(135deg, #3a1c32, #21101c);
}

.video-visual {
    background: linear-gradient(135deg, #0e292d, #081719);
}

/* Mock Graphics */
.mock-terminal {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    width: 80%;
}

.mock-terminal .dot-btn {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.mock-terminal .red { background: #ff5f56; }
.mock-terminal .yellow { background: #ffbd2e; }
.mock-terminal .green { background: #27c93f; }

.terminal-code {
    font-family: monospace;
    font-size: 0.6875rem;
    margin-top: 12px;
    line-height: 1.4;
    color: #e2e8f0;
}

.t-pink { color: #f472b6; }
.t-blue { color: #60a5fa; }
.t-yellow { color: #fbbf24; }
.t-orange { color: #fb7185; }

.mock-instagram {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    width: 70%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ig-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #cbd5e1;
}

.ig-username {
    font-size: 0.625rem;
    font-weight: 600;
}

.ig-image {
    height: 80px;
    background: #1e293b;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-grid-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.2);
}

.ig-stats-overlay {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.mock-editor {
    width: 80%;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.play-btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.editor-track {
    width: 50%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    position: relative;
}

.editor-track::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 3px;
}

.portfolio-desc {
    padding: 24px;
}

.p-category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-accent-pink);
    margin-bottom: 8px;
    display: block;
}

.portfolio-desc h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.portfolio-desc p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- CLIENT TESTIMONIALS --- */
.testimonials-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t-rating {
    font-size: 0.875rem;
}

.t-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.t-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
}

.t-client h4 {
    font-size: 0.9375rem;
}

.t-client span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-info-item {
    display: flex;
    gap: 16px;
}

.c-icon {
    font-size: 1.5rem;
}

.c-info-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.c-info-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
    bottom: -50px;
    right: -50px;
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.contact-form-glass h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
}

.form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

textarea.form-input {
    resize: none;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    background: rgba(255, 255, 255, 0.01);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-links-group {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-links-group h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-links-group a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-meta {
    display: flex;
    gap: 16px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes rotateLiquid {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

@keyframes floatBubble {
    from { transform: translateY(0px) rotate(0deg); }
    to { transform: translateY(-10px) rotate(1deg); }
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(2.2); opacity: 0; }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2.25rem; }
    .hero-content h1 { font-size: 3rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-bullets { justify-content: center; }
    
    .process-grid, .portfolio-grid-layout, .testimonials-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .glass-header {
        width: 100%;
        top: 0;
        border-radius: 0;
    }
    .header-container { padding: 0 20px; }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background: rgba(7, 9, 14, 0.95);
        backdrop-filter: blur(25px);
        transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }
    
    html[data-theme="light"] .nav-menu-wrapper {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-menu-wrapper.mobile-active {
        height: 280px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- SERVICES CONFIGURATOR STYLES --- */

.configurator-main {
    padding-top: 140px;
    position: relative;
}

.config-intro {
    margin-bottom: 50px;
}

.services-builder-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: start;
}

/* 2-Column Services Catalog */
.services-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-select-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.65;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-select-card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-select-card.selected {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 30px rgba(0, 199, 190, 0.15);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card-meta-icon {
    font-size: 1.75rem;
}

.service-card-meta-text h3 {
    font-size: 1.0625rem;
    font-weight: 700;
}

.service-card-meta-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s ease;
    background: transparent;
}

.service-select-card.selected .checkbox-custom,
.split-option.active .checkbox-custom {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: black;
}

.checkbox-custom svg {
    width: 14px;
    height: 14px;
}

.service-card-body {
    display: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    animation: fadeInSlide 0.3s ease forwards;
}

.service-select-card.selected .service-card-body {
    display: block;
}

.service-desc-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Config panel parameters */
.service-config-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.config-label-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.config-options-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.config-option-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.config-option-btn:hover {
    color: var(--text-main);
    border-color: rgba(255,255,255,0.2);
}

.config-option-btn.active {
    background: white;
    color: black;
    border-color: white;
}

/* Sliders */
.range-slider-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.range-slider-input {
    flex-grow: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.range-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.range-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-val-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(0, 199, 190, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(0, 199, 190, 0.2);
}

/* Handling details styling */
.handling-level-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.level-info-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-info-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: black;
}

.level-detail-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
    display: none;
}

.level-detail-box.show {
    display: block;
}

.level-detail-box h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.level-detail-box p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.level-detail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.level-detail-list li {
    font-size: 0.75rem;
    color: var(--text-main);
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
}

.level-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.level-detail-reason {
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 8px;
    color: var(--text-muted);
}

.logo-promo-badge {
    font-size: 0.75rem;
    background: rgba(255, 149, 0, 0.1);
    color: var(--color-accent-orange);
    border: 1px solid rgba(255, 149, 0, 0.2);
    padding: 10px;
    border-radius: 12px;
    line-height: 1.4;
}

/* Summary Checkout Widget */
.checkout-wrapper {
    position: sticky;
    top: 110px;
}

.checkout-widget {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.875rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.checkout-item-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkout-item-name span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.checkout-item-price {
    font-weight: 700;
}

.empty-list {
    color: var(--text-muted);
    font-style: italic;
    justify-content: center;
    border: none;
    padding: 20px 0;
}

.checkout-coupon-row {
    display: flex;
    gap: 8px;
}

.checkout-coupon-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text-main);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.checkout-coupon-btn {
    border-radius: 12px;
    font-size: 0.8125rem;
    padding: 0 16px;
}

.checkout-summary-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.coupon-discount-text {
    color: var(--color-accent-pink);
    font-weight: 600;
}

.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    font-size: 1.05rem;
    font-weight: 800;
}

.payment-split-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-split-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.split-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.split-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.split-option.active {
    background: rgba(0, 199, 190, 0.03);
    border-color: var(--color-secondary);
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.split-text strong {
    font-size: 0.8125rem;
}

.split-desc {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.payable-now-row {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-secondary);
    background: rgba(0, 199, 190, 0.05);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 199, 190, 0.15);
}

.checkout-client-form {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-client-form h4 {
    font-size: 0.9375rem;
}

/* --- PAYMENT SCANNER MODAL --- */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #ffffff;
}

.modal-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-card p {
    color: rgba(255, 255, 255, 0.7);
}

.modal-card .upi-apps-icons {
    color: rgba(255, 255, 255, 0.6);
}

.modal-card .payment-details-label {
    color: rgba(255, 255, 255, 0.6);
}

.modal-card .payment-details-value {
    color: #ffffff;
}

.modal-card .receipt-confirm-box {
    color: rgba(255, 255, 255, 0.8);
}

/* Light Theme overrides for modal card */
html[data-theme="light"] .modal-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

html[data-theme="light"] .modal-card h3 {
    color: #0f172a;
}

html[data-theme="light"] .modal-card p {
    color: rgba(15, 23, 42, 0.7);
}

html[data-theme="light"] .modal-card .upi-apps-icons {
    color: rgba(15, 23, 42, 0.6);
}

html[data-theme="light"] .modal-card .payment-details-label {
    color: rgba(15, 23, 42, 0.6);
}

html[data-theme="light"] .modal-card .payment-details-value {
    color: #0f172a;
}

html[data-theme="light"] .modal-card .receipt-confirm-box {
    color: rgba(15, 23, 42, 0.8);
    background: rgba(0, 199, 190, 0.08);
}

html[data-theme="light"] .modal-card .spinner {
    border-color: rgba(15, 23, 42, 0.08);
    border-top-color: var(--color-secondary);
}

html[data-theme="light"] .modal-close-btn {
    color: rgba(15, 23, 42, 0.6);
}

.checkout-modal.show .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
}

.payment-simulation-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-simulation-step.active {
    display: flex;
}

.upi-qr-container {
    background: white;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-wrapper {
    width: 160px;
    height: 160px;
}

.qr-svg {
    width: 100%;
    height: 100%;
}

.upi-apps-icons {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.payment-success-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 199, 190, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-success-circle svg {
    width: 24px;
    height: 24px;
}

.receipt-confirm-box {
    font-size: 0.8125rem;
    background: rgba(0, 199, 190, 0.05);
    border: 1px solid rgba(0, 199, 190, 0.1);
    padding: 12px;
    border-radius: 12px;
    margin-top: 16px;
    width: 100%;
    line-height: 1.4;
}

.payment-details-box {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.payment-details-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.payment-details-label {
    color: var(--text-muted);
}

.payment-details-value {
    font-weight: 600;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: var(--glass-shadow);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-color: rgba(0, 199, 190, 0.3);
}

.toast.error {
    border-color: rgba(255, 45, 85, 0.3);
    color: #ff3b30;
}

/* --- FLOATING MOBILE DOCK --- */
.floating-highlight-dock {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 500px;
    z-index: 950;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-main);
}

html[data-theme="light"] #floating-dock {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
}

html[data-theme="light"] #floating-dock .dock-total-highlight {
    color: var(--color-primary) !important;
}

.floating-highlight-dock.show {
    display: block;
    bottom: 20px;
}

.dock-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pulse-beacon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 0 rgba(0, 199, 190, 0.7);
    animation: beaconPulse 1.5s infinite;
}

.dock-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dock-content strong {
    font-size: 0.8125rem;
}

.dock-total-highlight {
    font-weight: 800;
    color: var(--color-secondary);
}

.dock-subtext {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.dock-btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.dock-close-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 4px;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes beaconPulse {
    to { box-shadow: 0 0 0 8px rgba(0, 199, 190, 0); }
}

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

/* Responsive grid overrides */
@media (max-width: 992px) {
    .services-builder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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