/* ==========================================================================
   Zervy Tech - Premium Animated Light Theme Master Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --bg-body: #f0f4f8;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-accent-light: #eff6ff;

    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --brand-primary: #2563eb;
    --brand-primary-hover: #1d4ed8;
    --brand-dark: #1e3a8a;
    --brand-teal: #0d9488;
    --brand-indigo: #4f46e5;
    --brand-amber: #d97706;
    --brand-violet: #7c3aed;

    --border-subtle: #e2e8f0;
    --border-strong: #cbd5e1;
    --border-brand: #bfdbfe;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 4px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.1), 0 4px 10px -4px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 30px -4px rgba(37, 99, 235, 0.35), 0 12px 24px -6px rgba(37, 99, 235, 0.2);
    --shadow-teal-glow: 0 0 30px -4px rgba(13, 148, 136, 0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   3. Global Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(-6px) rotate(1deg);
    }

    50% {
        transform: translateY(8px) rotate(-1deg);
    }
}

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

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes toastIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

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

@keyframes progressFill {
    from {
        width: 0;
    }
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: var(--border-brand);
    }

    50% {
        border-color: var(--brand-primary);
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
    }
}

/* --------------------------------------------------------------------------
   4. Scroll Progress Bar & Reveal Animations
   -------------------------------------------------------------------------- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #2563eb, #0d9488, #4f46e5, #7c3aed, #2563eb);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1001;
    width: 0%;
    transition: width 0.12s ease-out;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.07s;
}

.stagger-2 {
    transition-delay: 0.14s;
}

.stagger-3 {
    transition-delay: 0.21s;
}

.stagger-4 {
    transition-delay: 0.28s;
}

.stagger-5 {
    transition-delay: 0.35s;
}

.stagger-6 {
    transition-delay: 0.42s;
}

.stagger-7 {
    transition-delay: 0.49s;
}

/* --------------------------------------------------------------------------
   5. Background & Ambient Elements
   -------------------------------------------------------------------------- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(37, 99, 235, 0.06) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 70%);
    bottom: 10%;
    left: -80px;
    animation: floatReverse 15s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    top: 40%;
    right: 10%;
    animation: float 18s ease-in-out infinite reverse;
}

/* --------------------------------------------------------------------------
   6. Layout Containers & Cards
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.glass-card>* {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    border-color: var(--border-brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.75rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.3rem 1rem;
    background: var(--bg-accent-light);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-violet) 50%, var(--brand-teal) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* --------------------------------------------------------------------------
   7. Announcement Bar & Navigation Header
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: linear-gradient(90deg, #eff6ff 0%, #f0fdf4 50%, #eff6ff 100%);
    background-size: 200% 100%;
    animation: gradientShift 6s ease infinite;
    border-bottom: 1px solid var(--border-brand);
    padding: 0.6rem 0;
    font-size: 0.875rem;
    color: var(--brand-dark);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    text-align: center;
    font-weight: 500;
}

.badge-mini {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo));
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.link-glow {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.link-glow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brand-primary);
    transition: var(--transition);
}

.link-glow:hover::after {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .nav-container {
    height: 72px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.04);
}

.brand-logo .logo-img {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.08));
}

.site-header.scrolled .brand-logo .logo-img {
    height: 48px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.92rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-indigo));
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   8. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 1.45rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo), var(--brand-teal));
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(6px);
}

.btn-glow:hover::before {
    opacity: 0.7;
}

.btn-secondary {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-strong);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1.5px solid var(--border-strong);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: #15803d;
    border: 1.5px solid #bbf7d0;
    background: #f0fdf4;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.1);
}

.btn-whatsapp:hover {
    background: #dcfce7;
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 128, 61, 0.15);
}

.btn-lg {
    padding: 0.95rem 1.9rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: var(--bg-subtle);
}

.mobile-toggle .bar {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.mobile-toggle.open .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 4rem 0 5.5rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--bg-body) 60%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 1rem;
    background: var(--bg-accent-light);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease 0.2s both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--brand-teal);
    animation: pulse-ring 1.5s ease-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 1.35rem;
    letter-spacing: -0.025em;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 560px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}

.trust-metrics {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-subtle);
    animation: fadeUp 0.8s ease 0.4s both;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-item .plus {
    color: var(--brand-primary);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    -webkit-text-fill-color: var(--brand-primary);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 0.35rem;
}

.metric-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    animation: slideInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-card-stack {
    position: relative;
    width: 100%;
}

.main-visual-card {
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 30px 60px -10px rgba(15, 23, 42, 0.18), 0 8px 20px -6px rgba(37, 99, 235, 0.1);
    transition: transform 0.15s ease-out;
    overflow: visible;
}

.card-header-bar {
    background: linear-gradient(90deg, #f8fafc, #f1f5f9);
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dots span:nth-child(1) {
    background: #fc605c;
}

.dots span:nth-child(2) {
    background: #fdbc40;
}

.dots span:nth-child(3) {
    background: #34c749;
}

.address-bar {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 0.28rem 1rem;
    font-size: 0.73rem;
    color: var(--text-muted);
    flex-grow: 1;
    text-align: center;
    font-family: monospace;
}

.card-body-preview {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.tech-graphic {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: radial-gradient(circle, var(--bg-accent-light), #e0eaff);
    border-radius: 50%;
    border: 2px solid var(--border-brand);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.05), 0 0 0 16px rgba(37, 99, 235, 0.025);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes logoZoomDepth {
    0%, 100% {
        transform: perspective(400px) scale3d(1, 1, 1) translateZ(0px);
        filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.18));
    }
    50% {
        transform: perspective(400px) scale3d(1.28, 1.28, 1.28) translateZ(30px);
        filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.4));
    }
}

.floating-logo {
    width: 85px;
    height: auto;
    z-index: 2;
    animation: logoZoomDepth 2.8s ease-in-out infinite;
}

.radar-circle {
    display: none;
}

.preview-metrics-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.preview-metric {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.preview-metric:hover {
    border-color: var(--border-brand);
    background: var(--bg-accent-light);
}

.p-title {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.progress-bar {
    width: 100%;
    height: 7px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.35rem;
}

.progress-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-indigo));
    border-radius: 4px;
    animation: progressFill 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.progress-bar .fill.cyan {
    background: linear-gradient(90deg, var(--brand-teal), #06b6d4);
}

.p-val {
    font-size: 0.75rem;
    color: var(--brand-dark);
    font-weight: 700;
}

/* Hero Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.8rem 1.15rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 28px -4px rgba(15, 23, 42, 0.12), 0 2px 8px -2px rgba(15, 23, 42, 0.06);
    z-index: 5;
    transition: var(--transition);
}

@keyframes badgeGlowPulse {
    0%, 100% {
        box-shadow: 0 8px 28px -4px rgba(15, 23, 42, 0.10),
                    0 2px 8px -2px rgba(15, 23, 42, 0.05);
        border-color: rgba(226, 232, 240, 0.9);
        background: rgba(255, 255, 255, 0.95);
    }
    50% {
        box-shadow: 0 8px 32px -2px rgba(37, 99, 235, 0.22),
                    0 0 0 4px rgba(37, 99, 235, 0.07);
        border-color: rgba(37, 99, 235, 0.35);
        background: rgba(239, 246, 255, 0.98);
    }
}

.badge-top-right {
    top: -18px;
    right: -18px;
    animation: badgeGlowPulse 3s ease-in-out infinite;
}

.badge-bottom-left {
    bottom: -18px;
    left: -18px;
    animation: badgeGlowPulse 3s ease-in-out 1.5s infinite;
}

.floating-badge:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.03);
}

.floating-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.floating-badge span {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.code-icon {
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-primary);
    background: var(--bg-accent-light);
    border: 1px solid var(--border-brand);
    padding: 5px 8px;
    border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   10. Domains Banner
   -------------------------------------------------------------------------- */
.domains-banner {
    padding: 2.25rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.banner-title {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.domains-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.domain-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.3rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.domain-tag:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.green {
    background-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
    animation: dotBlink 2s ease-in-out infinite;
}

.dot.blue {
    background-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.domain-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.tag-status {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   11. About Section
   -------------------------------------------------------------------------- */
.about-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.about-card {
    padding: 2.5rem 2rem;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-brand);
}

.about-card:hover .card-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo));
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
}

.about-card:hover .card-icon svg {
    stroke: #ffffff;
}

.highlight-card {
    border-color: var(--border-brand);
    background: linear-gradient(160deg, var(--bg-accent-light), #ffffff);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-accent-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    border: 1px solid var(--border-brand);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.official-credentials-box {
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #ffffff, var(--bg-accent-light));
    border: 1px solid var(--border-brand);
    animation: borderGlow 4s ease-in-out infinite;
}

.cred-info {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.cred-logo {
    width: 54px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.15));
}

.cred-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.cred-info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.sub-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   12. Services Section
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    cursor: default;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-indigo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.15);
    border-color: var(--border-brand);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo));
    border-color: transparent;
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.service-card:hover .service-icon-wrap svg {
    stroke: #ffffff;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--bg-accent-light);
    border: 1px solid var(--border-brand);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-num {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--border-strong);
    transition: var(--transition);
}

.service-card:hover .service-num {
    color: var(--border-brand);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--brand-primary);
}

.service-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.65;
}

.service-bullets {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.service-bullets li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.35rem;
    transition: var(--transition);
}

.service-card:hover .service-bullets li {
    color: var(--text-primary);
}

.service-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-teal);
    font-weight: bold;
}

.service-btn {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-self: flex-start;
    padding: 0.4rem 0;
}

.service-btn:hover {
    color: var(--brand-dark);
    gap: 0.75rem;
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   13. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, #ffffff 100%);
}

.contact-wrapper {
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0.75rem 0 0.9rem;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

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

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-indigo));
    border-color: transparent;
    transform: scale(1.1);
}

.info-item:hover .info-icon svg {
    stroke: #ffffff;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-accent-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-brand);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-item span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.info-item a,
.info-item p {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: var(--brand-primary);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.form-group:focus-within label {
    color: var(--brand-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    background: var(--bg-body);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-strong);
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   14. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #fbecd8;
    color: #431407;
    padding: 5rem 0 2.25rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.5), rgba(217, 119, 6, 0.6), rgba(234, 88, 12, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.75rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 75px;
    margin-bottom: 1.1rem;
    filter: none;
    opacity: 1;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(234, 88, 12, 0.2));
}

.footer-logo:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.footer-brand p {
    color: #78350f;
    font-size: 0.875rem;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.reg-pill {
    display: inline-block;
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(234, 88, 12, 0.12);
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: var(--radius-full);
    color: #c2410c;
    font-weight: 600;
    transition: var(--transition);
}

.reg-pill:hover {
    background: rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.5);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #431407;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    color: #92400e;
    font-size: 0.875rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-col a:hover {
    color: #ea580c;
    transform: translateX(4px);
}

.footer-col p {
    font-size: 0.875rem;
    color: #78350f;
    margin-bottom: 0.55rem;
    line-height: 1.5;
}

.footer-domains {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.d-chip {
    font-size: 0.72rem;
    background: rgba(234, 88, 12, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: #c2410c;
    font-weight: 600;
    border: 1px solid rgba(234, 88, 12, 0.25);
    transition: var(--transition);
}

.d-chip:hover {
    background: rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(234, 88, 12, 0.2);
    padding-top: 2rem;
    font-size: 0.84rem;
    color: #efa170;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #92400e;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ea580c;
}

/* --------------------------------------------------------------------------
   15. Service Detail Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    max-width: 620px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.25);
    transform: scale(0.88) translateY(30px);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-indigo), var(--brand-teal));
    background-size: 200% 100%;
    animation: gradientShift 2s ease infinite;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.6rem;
    color: var(--text-muted);
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-subtle);
    transform: rotate(90deg);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.35rem;
}

.modal-body {
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.modal-body h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0 0.4rem;
}

.modal-body ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
}

.modal-body ul li {
    margin-bottom: 0.3rem;
}

/* --------------------------------------------------------------------------
   16. Floating WhatsApp & Toast
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp:hover {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.toast {
    background: #ffffff;
    border: 1px solid #6ee7b7;
    color: var(--text-primary);
    padding: 0.9rem 1.35rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-width: 360px;
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries — Mobile First
   -------------------------------------------------------------------------- */

/* ── Laptop / Large Tablet (≤ 1100px) ── */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-content {
        animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-metrics {
        justify-content: center;
    }

    .hero-visual {
        animation: scaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .brand-logo .logo-img {
        height: 58px;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

    /* Layout */
    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-description {
        font-size: 0.97rem;
    }

    /* Announcement bar */
    .announcement-bar {
        font-size: 0.8rem;
        padding: 0.45rem 0;
    }

    .announcement-content {
        gap: 0.4rem;
        line-height: 1.35;
    }

    .announcement-content p {
        font-size: 0.77rem;
    }

    /* Header */
    .nav-container {
        height: 66px;
    }

    .site-header.scrolled .nav-container {
        height: 58px;
    }

    .brand-logo .logo-img {
        height: 44px;
    }

    .site-header.scrolled .brand-logo .logo-img {
        height: 38px;
    }

    /* Compact header actions */
    .btn-whatsapp span {
        display: none;
    }

    .header-actions .btn-primary {
        padding: 0.55rem 0.85rem;
        font-size: 0.82rem;
    }

    /* Mobile Nav Drawer */
    .nav-menu {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1.25rem 1.5rem;
        transform: translateY(-110%) scale(0.97);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            opacity 0.3s ease;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
        opacity: 0;
        pointer-events: none;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.7rem 0.75rem;
        width: 100%;
        border-radius: var(--radius-sm);
        display: block;
    }

    .nav-link:hover {
        background: var(--bg-accent-light);
        padding-left: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-section {
        padding: 2.5rem 0 3.5rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.015em;
    }

    .hero-subtitle {
        font-size: 0.97rem;
    }

    /* Hide decorative hero card on mobile */
    .hero-visual {
        display: none;
    }

    /* Trust metrics */
    .trust-metrics {
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: center;
        padding-top: 1.25rem;
    }

    .metric-divider {
        display: none;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    /* Grids → 1 column */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    /* About credentials */
    .official-credentials-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .official-credentials-box .btn {
        width: 100%;
        justify-content: center;
    }

    /* Floating badges hidden */
    .badge-top-right,
    .badge-bottom-left,
    .floating-badge {
        display: none;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 2rem 1.35rem;
    }

    .contact-info h2 {
        font-size: 1.65rem;
    }

    /* Footer - 2-col with brand spanning full width */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding: 3.5rem 0 1.75rem;
    }

    .footer-logo {
        height: 60px;
    }

    /* Floating elements */
    .toast-container {
        left: 1rem;
        bottom: 1rem;
    }

    .floating-whatsapp {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
    }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2.75rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-header {
        margin-bottom: 2.25rem;
    }

    .brand-logo .logo-img {
        height: 38px;
    }

    /* Hero */
    .hero-section {
        padding: 2.25rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-metrics {
        gap: 1rem;
    }

    .metric-number {
        font-size: 1.55rem;
    }

    /* Cards */
    .service-card,
    .about-card {
        padding: 1.75rem 1.25rem;
    }

    /* Domains */
    .domains-grid {
        gap: 0.6rem;
    }

    .domain-tag {
        padding: 0.45rem 0.8rem;
        font-size: 0.84rem;
    }

    /* Contact */
    .contact-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-info h2 {
        font-size: 1.4rem;
    }

    /* Footer fully stacked */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Modal */
    .modal-card {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-lg);
    }
}

/* ── Large Screens (≥ 1400px) ── */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .section-title {
        font-size: 2.85rem;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .nav-container {
        height: 72px;
    }

    .site-header.scrolled .nav-container {
        height: 62px;
    }

    .brand-logo .logo-img {
        height: 46px;
    }

    .site-header.scrolled .brand-logo .logo-img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1.5rem;
        transform: translateY(-120%) scale(0.96);
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
            opacity 0.3s ease;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.65rem 0.5rem;
        width: 100%;
        border-radius: var(--radius-sm);
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        background: var(--bg-accent-light);
        padding-left: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .contact-wrapper {
        padding: 2rem 1.5rem;
    }

    .trust-metrics {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .metric-divider {
        display: none;
    }

    .badge-top-right,
    .badge-bottom-left {
        display: none;
    }

    .floating-badge {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1.1rem;
    }

    .brand-logo .logo-img {
        height: 40px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-section {
        padding: 3rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        padding: 1.5rem 1.1rem;
    }

    .trust-metrics {
        gap: 1rem;
    }

    .metric-number {
        font-size: 1.7rem;
    }

    .domains-grid {
        gap: 0.85rem;
    }

    .domain-tag {
        padding: 0.5rem 0.85rem;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .section-title {
        font-size: 2.85rem;
    }
}

/* ==========================================================================
   Portfolio Section — Partner Strip + Project Cards
   ========================================================================== */

/* --------------------------------------------------------------------------
   Portfolio Section Base
   -------------------------------------------------------------------------- */
.portfolio-section {
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.02) 50%, transparent 100%);
}

/* --------------------------------------------------------------------------
   Partners Block Header
   -------------------------------------------------------------------------- */
.partners-block {
    margin-bottom: 3.5rem;
}

.featured-projects-header {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.partners-header,
.featured-projects-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.partners-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
    position: relative;
}

.partners-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-violet));
    border-radius: var(--radius-full);
    margin-top: 4px;
}

.partners-divider {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border-brand), transparent);
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Ticker / Infinite Scroll Strip
   -------------------------------------------------------------------------- */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Fade edges for a polished look */
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.partner-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: default;
    transition: var(--transition);
    min-width: 130px;
    flex-shrink: 0;
}

.partner-chip:hover {
    border-color: var(--border-brand);
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px) scale(1.03);
}

.partner-logo {
    width: 80px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.partner-logo-dark {
    /* ZuByte has dark background — add a dark rounded container */
    border-radius: var(--radius-sm);
    background: #0a0a0a;
    padding: 4px 6px;
}

.partner-chip > span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Projects Grid
   -------------------------------------------------------------------------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* --------------------------------------------------------------------------
   Project Card
   -------------------------------------------------------------------------- */
.project-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px -8px rgba(37, 99, 235, 0.18);
    border-color: var(--border-brand);
}

/* Logo wrap area */
.project-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: linear-gradient(135deg, #f8faff 0%, #eff6ff 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.25rem;
    overflow: hidden;
    position: relative;
}

.project-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
}

.project-logo-wrap-light {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.project-logo-wrap-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.project-logo {
    width: 100%;
    max-width: 110px;
    max-height: 100px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card:hover .project-logo {
    transform: scale(1.08);
}

/* Project info content */
.project-info {
    flex: 1;
    padding: 1.25rem 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.project-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industry Tags */
.project-industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
}

.tag-ecommerce {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.tag-realestate {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.tag-logistics {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.tag-education {
    background: #fdf4ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.tag-tech {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.tag-corporate {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.tag-publishing {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

/* Eliita logo wrap — light pink/rose gradient matching their brand */
.project-logo-wrap-eliita {
    background: linear-gradient(135deg, #fff1f7 0%, #fce7f3 100%);
}

/* Futoskillz Academy text-badge placeholder */
.partner-logo-text-badge {
    width: 80px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-violet));
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* Project card footer */
.project-card-footer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-view-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: var(--transition);
    white-space: nowrap;
}

.project-view-link:hover {
    color: var(--brand-violet);
    gap: 0.45rem;
}

.project-built-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-primary);
    background: var(--bg-accent-light);
    border: 1px solid var(--border-brand);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.project-built-badge::before {
    content: '✦';
    font-size: 0.55rem;
}

/* --------------------------------------------------------------------------
   Portfolio CTA Strip
   -------------------------------------------------------------------------- */
.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.portfolio-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.portfolio-cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-violet));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.portfolio-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.portfolio-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Portfolio Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-cta {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .portfolio-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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

    .partner-chip {
        min-width: 110px;
        padding: 0.85rem 1rem;
    }

    .partner-logo {
        width: 64px;
        height: 46px;
    }

    .partners-label {
        font-size: 1.1rem;
    }

    .portfolio-cta {
        padding: 1.5rem;
    }

    .portfolio-cta h3 {
        font-size: 1.1rem;
    }

    .portfolio-cta-content {
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   18. Advanced Motion, Micro-Interactions & Premium Visual Effects
   ========================================================================== */

/* Page Load Smooth Fade-in */
body {
    animation: bodyFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) ease-out;
}

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

/* Glass Card Animated Light Sweep Spotlight */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%
    );
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease-in-out;
    pointer-events: none;
}

.glass-card:hover::after {
    transform: rotate(30deg) translateY(100%);
}

/* Enhanced Reveal-on-Scroll with Scale & Rotate Subtle Touch */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service Card Interactive Hover Elevation */
.service-card {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.22), 0 0 25px rgba(37, 99, 235, 0.1);
}

/* Glowing Border Pulse for Featured Elements */
@keyframes continuousGlowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.35), 0 0 50px rgba(13, 148, 136, 0.2);
    }
}

.btn-glow {
    animation: continuousGlowPulse 4s ease-in-out infinite;
}

/* Smooth Focus States for Accessibility & Interactive Feedback */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

/* Text Highlight Animation */
::selection {
    background: var(--brand-primary);
    color: #ffffff;
}