/* =====================================================
   DIGITX CODE WEBSITE - MODERN UI
   ===================================================== */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --bg-base: #ffffff;
    --bg-card: #ffffff;
    --bg-muted: #f6f6f6;
    --text-strong: #0f0f0f;
    --text-muted: #5b5b5b;
    --primary: #ef4444;
    --primary-dark: #b91c1c;
    --accent: #111111;
    --accent-soft: #fde2e2;
    --danger: #ef4444;
    --border: rgba(17, 17, 17, 0.12);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.14);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-width: 1200px;
    --section-padding: 96px;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --focus-ring: 0 0 0 3px rgba(239, 68, 68, 0.35);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-body);
    color: var(--text-strong);
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 60%, #f1f1f1 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}


img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(239, 68, 68, 0.5);
    outline-offset: 3px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

::selection {
    background: rgba(239, 68, 68, 0.2);
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    scroll-margin-top: 110px;
}

/* ==================== CIRCLE TEXT EFFECT ==================== */
.circle-text {
    position: absolute;
    width: 160px;
    height: 160px;
    pointer-events: none;
    opacity: 0.85;
    z-index: 2;
    animation: circle-float 6s ease-in-out infinite;
}

.circle-text svg {
    width: 100%;
    height: 100%;
    animation: orbit-spin 10s linear infinite;
}

.circle-text text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    fill: currentColor;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
    animation: circle-glow 3.8s ease-in-out infinite;
}

.circle-text-light {
    color: #111111;
}

.circle-text-dark {
    color: #ffffff;
    opacity: 0.75;
}

.circle-text-hero {
    top: 120px;
    right: 6%;
}

.circle-text-tech {
    top: 80px;
    left: 6%;
}

.circle-text-pricing {
    bottom: 80px;
    right: 6%;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(2.2rem, 3.6vw, 3.3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-strong);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.highlight {
    color: var(--primary);
}

/* ==================== HEADER / NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
}

.navbar {
    padding: 18px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
    gap: 0.6rem;
    z-index: 1001;
}

.nav-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.25));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--text-strong);
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #111111);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    border: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.nav-cta.nav-link:hover,
.nav-cta.nav-link.active {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-strong);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 640px;
    z-index: 2;
    will-change: transform, opacity, filter;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.12);
    color: var(--primary);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.6rem, 4.1vw, 4.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-strong);
    line-height: 1.05;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #111111);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-strong);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-metrics {
    margin-top: 2.2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
    display: block;
}

.metric p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
    will-change: transform, opacity, filter;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-card-top {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.chip {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(239, 68, 68, 0.12);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.chip-accent {
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.2);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.kpi {
    background: var(--bg-muted);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
}

.kpi span {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-dark);
}

.kpi p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-progress {
    margin-top: 0.4rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    width: 82%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.hero-mini {
    position: relative;
    right: auto;
    bottom: auto;
    width: 220px;
    margin-top: 1rem;
    margin-left: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.mini-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-strong);
    margin-bottom: 0.6rem;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Background orbs */
.stars,
.stars2,
.stars3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    will-change: transform;
}

.stars {
    width: 420px;
    height: 420px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.45) 0%, transparent 70%);
}

.stars2 {
    width: 520px;
    height: 520px;
    bottom: -220px;
    right: -160px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, transparent 70%);
}

.stars3 {
    width: 260px;
    height: 260px;
    top: 25%;
    right: 20%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, transparent 70%);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background-color: var(--bg-muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), #111111);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2);
    transition: var(--transition-smooth);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.25);
}

.about-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--text-strong);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-list i {
    color: var(--primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 0.8rem;
    box-shadow: var(--shadow-sm);
}

.stat h4 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background-color: var(--bg-base);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-strong);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-list li::before {
    content: '\2022';
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -0.3em;
}

.service-meta {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.service-note {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ==================== TECHNOLOGIES SECTION ==================== */
.technologies {
    position: relative;
    background: radial-gradient(circle at top, #0f0f0f 0%, #070707 60%, #030303 100%);
    color: #ffffff;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.tech-bg span {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, transparent 70%);
    filter: blur(25px);
    opacity: 0.6;
    animation: tech-bg-float 8s ease-in-out infinite;
}

.tech-bg span:nth-child(1) {
    top: -120px;
    left: -60px;
}

.tech-bg span:nth-child(2) {
    bottom: -140px;
    right: -80px;
    animation-delay: 2s;
}

.tech-bg span:nth-child(3) {
    top: 40%;
    right: 10%;
    width: 220px;
    height: 220px;
    animation-delay: 4s;
}

.tech-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.tech-copy {
    max-width: 520px;
}

.tech-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    gap: 0.5rem;
}

.tech-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.4));
}

.tech-title {
    margin: 1.2rem 0 1rem;
    font-size: clamp(2.8rem, 4vw, 6.9rem);
    line-height: 1.1;
}

.tech-highlight {
    color: #ef4444;
}

.tech-desc {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    font-size: 1.05rem;
}

.tech-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-tags span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-showcase {
    display: grid;
    gap: 1.6rem;
}

.tech-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.tech-stat {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.35);
    background: rgba(0, 0, 0, 0.35);
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.15);
    animation: tech-stat-pulse 5s ease-in-out infinite;
}

.tech-stat::before {
    content: '';
    position: absolute;
    inset: 10%;
    background-image: radial-gradient(rgba(239, 68, 68, 0.35) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.4;
}

.tech-stat strong {
    font-size: 3.50rem;
    color: #ef4444;
    z-index: 1;
}

.tech-stat span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.tech-card i {
    color: #ef4444;
    font-size: 1.1rem;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}
/* ==================== PRICING SECTION ==================== */
.pricing {
    position: relative;
    background: radial-gradient(circle at top, #111111 0%, #0b0b0f 55%, #060607 100%);
    color: #ffffff;
    overflow: hidden;
}

.pricing .section-title {
    color: #ffffff;
}

.pricing .section-title::after {
    background: linear-gradient(90deg, #ef4444, #111111);
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
    margin: 0 auto 3rem;
}

.pricing-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 0.8rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.4));
}

.pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.pricing-bg span {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, transparent 70%);
    filter: blur(18px);
    animation: pricing-float 8s ease-in-out infinite;
    opacity: 0.7;
}

.pricing-bg span:nth-child(1) {
    top: -120px;
    left: -80px;
}

.pricing-bg span:nth-child(2) {
    bottom: -140px;
    right: -60px;
    animation-delay: 2s;
}

.pricing-bg span:nth-child(3) {
    top: 30%;
    right: 10%;
    width: 220px;
    height: 220px;
    animation-delay: 4s;
}

.pricing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-head {
    margin-bottom: 1.2rem;
}

.pricing-name {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    font-size: 1.7rem;
    margin: 0.4rem 0;
    color: #ffffff;
}

.pricing-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.pricing-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pricing-list li::before {
    content: '●';
    color: #ef4444;
    margin-right: 0.5rem;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(239, 68, 68, 0.4);
}

.pricing-highlight {
    background: #ffffff;
    color: #111111;
    border: 2px solid #ef4444;
}

.pricing-highlight .pricing-name,
.pricing-highlight .pricing-note,
.pricing-highlight .pricing-list {
    color: #2f2f2f;
}

.pricing-highlight .pricing-price {
    color: #111111;
}

.pricing-highlight .pricing-button {
    background: #111111;
}

.pricing-highlight .pricing-button:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-dark {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(255, 255, 255, 0.03));
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why {
    background: var(--bg-muted);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.why-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* ==================== PROCESS SECTION ==================== */
.process {
    background: var(--bg-base);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-step {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.process-card p {
    color: var(--text-muted);
}

/* ==================== CLIENT TYPES SECTION ==================== */
.clients {
    position: relative;
    background: radial-gradient(circle at top, #120707 0%, #0a0505 55%, #050303 100%);
    color: #ffffff;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.18) 0%, transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.clients-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 18px rgba(239, 68, 68, 0.35));
}

.clients-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.clients-title {
    margin-top: 1rem;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 700;
}

.clients-subtitle {
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.clients-radar {
    position: relative;
    width: min(560px, 90vw);
    height: min(560px, 90vw);
    margin: 0 auto 3rem;
    display: grid;
    place-items: center;
    z-index: 1;
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.2);
    animation: radar-pulse 6s ease-in-out infinite;
}

.ring-lg {
    width: 100%;
    height: 100%;
}

.ring-md {
    width: 75%;
    height: 75%;
    animation-delay: 1.5s;
}

.ring-sm {
    width: 50%;
    height: 50%;
    animation-delay: 3s;
}

.radar-core {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at top, #ff9a9a 0%, #ef4444 40%, #3a0c0c 100%);
    display: grid;
    place-items: center;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 45px rgba(239, 68, 68, 0.6);
    animation: core-glow 4s ease-in-out infinite;
}

.radar-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.5));
}

.radar-core span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.radar-core strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.radar-tags {
    position: absolute;
    inset: 0;
}

.radar-tags span {
    position: absolute;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ffffff;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

.radar-tags span:nth-child(1) { top: 18%; left: 18%; }
.radar-tags span:nth-child(2) { top: 70%; left: 20%; }
.radar-tags span:nth-child(3) { top: 10%; left: 50%; }
.radar-tags span:nth-child(4) { top: 68%; left: 82%; }
.radar-tags span:nth-child(5) { top: 30%; left: 82%; }

.clients-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.client-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.6rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.client-card i {
    font-size: 1.6rem;
    color: #ef4444;
    margin-bottom: 0.8rem;
}

.client-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.client-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 30px 50px rgba(239, 68, 68, 0.2);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background: var(--bg-base);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-strong);
    font-size: 0.9rem;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--bg-muted);
}

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-list details[open] summary::after {
    content: '-';
}

.faq-list p {
    margin-top: 0.8rem;
    color: var(--text-muted);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background-color: var(--bg-muted);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-intro h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.contact-intro p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    resize: none;
    color: var(--text-strong);
    background: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--focus-ring);
}

.form-button {
    padding: 0.9rem 1.3rem;
    background: linear-gradient(135deg, var(--primary), #111111);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 0.4rem;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.detail-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.detail-icon {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 28px;
}

.detail-content h4 {
    color: var(--text-strong);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: radial-gradient(circle at top, #151515 0%, #0b0b0b 60%);
    color: #e2e8f0;
    padding: 4rem 0 2.5rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.35));
}

.footer-section p {
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(226, 232, 240, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(226, 232, 240, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    color: rgba(226, 232, 240, 0.6);
    font-size: 0.9rem;
    display: grid;
    gap: 0.5rem;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== FLOATING SOCIAL MEDIA BAR ==================== */
.floating-social-bar {
    position: fixed;
    left: 24px;
    bottom: 110px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.social-bar-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #111111);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-bar-toggle {
    display: none;
}

.social-bar-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.social-bar-toggle.active i {
    transform: rotate(45deg);
}

.social-bar-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: var(--transition-smooth);
}

.social-bar-links.show {
    max-height: none;
    opacity: 1;
}

.social-bar-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
    animation: slideOut 0.3s ease-out backwards;
}

.social-bar-links.show .social-bar-link {
    animation: slideOut 0.3s ease-out forwards;
}

.social-bar-link {
    animation: none;
}

.social-bar-link:nth-child(1) { animation-delay: 0s; }
.social-bar-link:nth-child(2) { animation-delay: 0.1s; }
.social-bar-link:nth-child(3) { animation-delay: 0.2s; }
.social-bar-link:nth-child(4) { animation-delay: 0.3s; }

.social-bar-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== ANIMATIONS ==================== */
@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-counter {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes chip-float {
    0%, 100% {
        transform: translateX(calc(-50% + var(--offset))) translateY(0);
    }
    50% {
        transform: translateX(calc(-50% + var(--offset))) translateY(-6px);
    }
}

@keyframes beam-pulse {
    0%, 100% {
        opacity: 0.35;
        height: 75%;
    }
    50% {
        opacity: 0.9;
        height: 100%;
    }
}

@keyframes core-glow {
    0%, 100% {
        box-shadow: 0 0 55px rgba(239, 68, 68, 0.45), 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 80px rgba(239, 68, 68, 0.65), 0 25px 70px rgba(0, 0, 0, 0.7);
    }
}

@keyframes tech-bg-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.05);
    }
}

@keyframes tech-stat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 18px rgba(239, 68, 68, 0.18);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 26px rgba(239, 68, 68, 0.3);
    }
}

@keyframes radar-pulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

@keyframes orbit-glow {
    0%, 100% {
        opacity: 0.65;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes ring-pulse {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(1.02);
    }
}

@keyframes circle-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes circle-glow {
    0%, 100% {
        letter-spacing: 4px;
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.45);
    }
    50% {
        letter-spacing: 6px;
        text-shadow: 0 0 18px rgba(239, 68, 68, 0.8);
    }
}

@keyframes pricing-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-16px) scale(1.05);
    }
}

@keyframes slideOut {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    }
}

.whatsapp-button {
    animation: pulse 2.4s ease-in-out infinite;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-mini {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    :root {
        --section-padding: 72px;
    }

    .tech-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tech-copy {
        margin: 0 auto;
    }

    .tech-tags {
        justify-content: center;
    }

    .tech-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-radar {
        width: min(420px, 88vw);
        height: min(420px, 88vw);
    }

    .radar-core {
        width: 120px;
        height: 120px;
    }

    .radar-tags span {
        font-size: 0.7rem;
    }

    .nav-links {
        display: flex;
        position: fixed;
        flex-direction: column;
        left: 0;
        top: 0;
        width: min(80vw, 320px);
        height: 100vh;
        overflow-y: auto;
        overscroll-behavior: contain;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        list-style: none;
        padding: 96px 1.5rem 2rem;
        gap: 0.85rem;
        z-index: 999;
        box-shadow: 18px 0 30px rgba(0, 0, 0, 0.12);
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 18px;
    }

    .nav-logo {
        height: 40px;
        width: auto;
    }

    .hamburger span {
        width: 22px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-badge {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        flex-wrap: wrap;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-metrics {
        justify-content: center;
        text-align: center;
    }

    .circle-text {
        display: none;
    }

    .hero-metrics {
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-social-bar {
        display: none;
    }

    .whatsapp-button {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 18px;
    }

    .tech-title {
        font-size: 2rem;
    }

    .tech-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-stat {
        aspect-ratio: auto;
        min-height: 120px;
        border-radius: 20px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .clients-radar {
        width: min(320px, 88vw);
        height: min(320px, 88vw);
    }

    .radar-core {
        width: 110px;
        height: 110px;
    }

    .radar-tags {
        display: none;
    }

    .clients-cards {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-button
    {
         width: 48px;
        height: 48px;
        bottom: 20px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}

/* ==================== PRINT STYLES ==================== */
@media print {
    .header,
    .whatsapp-button,
    .floating-social-bar {
        display: none;
    }
}
