/* -------------------------
   VARIABLES & RESET
-------------------------- */

:root {
    --color-bg: #050816;
    --color-bg-alt: #0a0e1a;
    --color-surface: #0f172a;
    --color-surface-alt: #111827;
    --color-primary: #3b82f6;
    --color-primary-soft: rgba(59, 130, 246, 0.15);
    --color-primary-strong: #2563eb;
    --color-secondary: #06b6d4;
    --color-accent: #10b981;
    --color-accent-bright: #22c55e;
    --color-text: #f1f5f9;
    --color-text-soft: #94a3b8;
    --color-border: rgba(148, 163, 184, 0.2);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(ellipse at top left, #1e3a8a 0%, #0a0e1a 35%, #020617 70%, #000 100%);
    color: var(--color-text);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* Remove default margin */
h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

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

/* -------------------------
   LAYOUT UTILITIES
-------------------------- */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(10, 14, 26, 0.4));
    backdrop-filter: blur(1px);
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

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

/* -------------------------
   HEADER / NAV
-------------------------- */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    transition: filter var(--transition-fast);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 28px rgba(59, 130, 246, 0.7));
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Nav */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-list a {
    color: var(--color-text-soft);
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #3b82f6, #22c55e);
    transition: width var(--transition-fast);
}

.nav-list a:hover {
    color: var(--color-text);
}

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

.nav-cta {
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: #f9fafb;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
    font-weight: 500;
}

/* Burger */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 16px;
    margin: 0 auto;
    background: #e5e7eb;
    border-radius: 999px;
    transition: var(--transition-fast);
}

/* Mobile nav open */
.nav-open .nav {
    display: block;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav {
    position: absolute;
    top: 56px;
    right: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 0.75rem 1rem;
}

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

/* -------------------------
   HERO
-------------------------- */

.hero {
    padding: 5.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    gap: 2.75rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #bfdbfe;
    margin-bottom: 1rem;
}

.hero-badge i {
    color: #22c55e;
}

.hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

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

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

.hero-subtitle {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    max-width: 520px;
    margin-bottom: 1.6rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.5);
}

.btn-secondary:hover {
    border-color: #60a5fa;
}

.btn-full {
    width: 100%;
}

/* Hero meta */
.hero-meta {
    display: grid;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.hero-meta i {
    color: #10b981;
    margin-right: 0.35rem;
}

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-card), 0 0 40px rgba(59, 130, 246, 0.15);
    width: 100%;
    max-width: 360px;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.25);
}

.hero-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 1.1rem;
}

.hero-card-metrics {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.hero-card-metrics .label {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.1rem;
}

.hero-card-metrics .value {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-card-metrics div:nth-child(1) .value {
    color: #22c55e;
}

.hero-card-metrics div:nth-child(2) .value {
    color: #f97316;
}

.hero-card-metrics div:nth-child(3) .value {
    color: #38bdf8;
}

.hero-card-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 0.7rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-card-footer i {
    color: #10b981;
}

/* -------------------------
   CLIENT LOGOS
-------------------------- */

.logos {
    padding: 1.75rem 0 1.25rem;
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

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

.logos-title {
    font-size: 0.8rem;
    color: var(--color-text-soft);
    margin-bottom: 1rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.logo-item {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px dashed rgba(148, 163, 184, 0.45);
    font-size: 0.8rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.8);
}

/* -------------------------
   SERVICES
-------------------------- */

.services-grid {
    display: grid;
    gap: 1.6rem;
}

.card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: var(--color-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    color: #60a5fa;
    font-size: 1.3rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    margin-bottom: 0.9rem;
}

.card-list {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-bottom: 1.1rem;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.card-list i {
    margin-top: 0.1rem;
    color: #10b981;
    font-size: 0.9rem;
}

.card-cta {
    font-size: 0.85rem;
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-cta i {
    font-size: 0.75rem;
}

/* -------------------------
   VALUE PROPOSITION
-------------------------- */

.value-grid {
    display: grid;
    gap: 2.4rem;
    align-items: center;
}

.value-text p {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin: 0.6rem 0 1.2rem;
}

.value-points {
    display: grid;
    gap: 1.1rem;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
}

.value-item i {
    margin-top: 0.2rem;
    padding: 0.55rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #60a5fa;
}

.value-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.trust-badges span {
    font-size: 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.35rem 0.7rem;
    background: rgba(15, 23, 42, 0.9);
    color: #cbd5f5;
}

.trust-badges i {
    color: #fbbf24;
    margin-right: 0.35rem;
}

.value-highlight {
    display: flex;
    justify-content: center;
}

.value-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 22px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 1.6rem 1.5rem;
    width: 100%;
    max-width: 340px;
    box-shadow: var(--shadow-card), 0 0 40px rgba(59, 130, 246, 0.15);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.25);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
}

.value-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.4rem;
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.value-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.value-card li span {
    font-weight: 600;
    color: #10b981;
}

/* -------------------------
   TESTIMONIALS
-------------------------- */

.testimonials-grid {
    display: grid;
    gap: 1.6rem;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    font-size: 5rem;
    opacity: 0.06;
    top: -1rem;
    right: 1rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.testimonial-header h3 {
    font-size: 0.95rem;
}

.testimonial-header p {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-bottom: 0.6rem;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #a5b4fc;
}

/* -------------------------
   PROCESS
-------------------------- */

.process-grid {
    display: grid;
    gap: 1rem;
}

.process-step {
    position: relative;
    padding: 1.1rem 1.1rem 1.1rem 3.2rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.step-number {
    position: absolute;
    left: 0.9rem;
    top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a5b4fc;
}

.process-step h3 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

/* -------------------------
   STATS
-------------------------- */

.stats-section {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

.stats-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.92);
    padding: 1.1rem 1rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

/* -------------------------
   FAQ
-------------------------- */

.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 0.6rem;
}

.faq-item {
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    padding: 0.9rem 1rem;
    background: none;
    border: none;
    color: inherit;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.faq-question i {
    transition: transform var(--transition-med);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med);
    padding: 0 1rem;
}

.faq-answer p {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    padding-bottom: 0.9rem;
}

/* -------------------------
   CONTACT
-------------------------- */

.contact-section {
    padding-bottom: 4.5rem;
}

.contact-grid {
    display: grid;
    gap: 2.2rem;
}

.contact-text p {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin: 0.75rem 0 1.2rem;
}

.contact-benefits {
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-bottom: 1.1rem;
}

.contact-benefits li {
    margin-bottom: 0.4rem;
}

.contact-benefits i {
    margin-right: 0.35rem;
    color: #10b981;
}

.contact-info {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.contact-info p {
    margin-bottom: 0.25rem;
}

.contact-info i {
    margin-right: 0.4rem;
    color: #60a5fa;
}

/* Form */
.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-card);
    padding: 1.6rem 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    color: var(--color-text);
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: rgba(15, 23, 42, 0.95);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    font-size: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.15rem;
}

.inline-link {
    color: #60a5fa;
    text-decoration: underline;
}

.error-message {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.7rem;
    color: #fca5a5;
    min-height: 0.8rem;
}

input.error,
select.error,
textarea.error {
    border-color: #fca5a5;
}

.form-success-message {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #4ade80;
}

/* -------------------------
   FOOTER
-------------------------- */

.footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding: 2.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--color-text-soft);
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-links ul,
.footer-legal ul {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.25rem;
}

.footer-links a,
.footer-legal a {
    color: var(--color-text-soft);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #e5e7eb;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.social-links a:hover {
    border-color: #3b82f6;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-text-soft);
}

/* -------------------------
   WHATSAPP FLOAT
-------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.2rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1.6rem;
    z-index: 60;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* -------------------------
   SCROLL ANIMATIONS
-------------------------- */

.reveal,
.reveal-right {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-right {
    transform: translateX(24px);
}

.reveal.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* -------------------------
   RESPONSIVE
-------------------------- */

@media (min-width: 768px) {
    .nav {
        position: static;
        display: block !important;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
    }

    .nav-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

    .value-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1.1fr 1.1fr;
    }

    .stats-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 6.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section {
        padding: 5rem 0;
    }
}