/* ===== Variables & Reset ===== */
:root {
    --primary: #1877F2;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --primary-lighter: #BBDEFB;
    --accent: #0D47A1;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --text-dark: #1A202C;
    --text-body: #334155;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: rgba(24, 119, 242, 0.15);
    --gradient: linear-gradient(135deg, #1877F2, #42A5F5);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-blue: 0 10px 40px rgba(24, 119, 242, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary);
    padding: 0.5rem 0;
}

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

.top-phone {
    font-size: 0.85rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.top-phone:hover { opacity: 0.8; }

.top-cta-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: var(--transition);
}

.top-cta-btn:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-mark { display: flex; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Logo ===== */
.logo.png {
    height: 38px;
    width: auto;
}

.footer-logo.png {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.hero-content {
    text-align: left;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Hero Dashboard Visual */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dash-header {
    padding: 0.75rem 1rem;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 6px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.dash-dot:first-child { background: #ef4444; }
.dash-dot:nth-child(2) { background: #fbbf24; }
.dash-dot:nth-child(3) { background: #10b981; }

.dash-content {
    padding: 1.5rem;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat-card {
    background: var(--bg-section);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.dash-stat-card i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.dash-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.dash-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.dash-graph {
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-section);
    padding: 0.5rem;
}

.dash-graph svg {
    width: 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.06) 0%, transparent 60%);
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-dark);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.25);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg { padding: 1.2rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

/* ===== Awards Bar ===== */
.awards-bar {
    background: var(--bg-section);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.awards-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== Section Styles ===== */
section {
    padding: 6rem 0;
}

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

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title-lg {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background: var(--bg-section);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(24, 119, 242, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-stat-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.about-stat-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-stat-bar {
    height: 5px;
    background: var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

.bar-fill.animated {
    width: var(--target-width);
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-white);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-block:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-block-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.service-block-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--text-body);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.service-list li:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.service-list li i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Traffic Chart */
.traffic-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 250px;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient);
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: growBar 1.5s ease forwards;
    transform-origin: bottom;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Phone Mockup */
.phone-mockup {
    width: 260px;
    margin: 0 auto;
    background: var(--bg-section);
    border-radius: 30px;
    padding: 12px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--bg-white);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-ad {
    background: var(--bg-section);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.ad-header {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.ad-content {
    height: 150px;
    background: linear-gradient(135deg, rgba(24,119,242,0.1), rgba(66,165,245,0.05));
}

.ad-cta {
    padding: 0.75rem;
    text-align: center;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Analytics Card */
.analytics-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.analytics-up {
    color: #10b981;
    font-size: 0.9rem;
}

.analytics-graph {
    height: 120px;
}

.analytics-graph svg {
    width: 100%;
    height: 100%;
}

/* Service Highlight */
.service-highlight {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 5rem;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.highlight-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.highlight-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.highlight-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.highlight-percent {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
}

.highlight-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ===== Industries Section ===== */
.industries {
    background: var(--bg-section);
}

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

.industry-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: rgba(24, 119, 242, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.industry-card h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-card h4 i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: var(--transition);
}

.industry-card:hover h4 i {
    transform: translateX(4px);
}

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

.industry-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.industry-link:hover {
    color: var(--primary-dark);
}

/* ===== Difference Section ===== */
.difference {
    background: var(--bg-white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.diff-icon {
    width: 64px;
    height: 64px;
    background: rgba(24, 119, 242, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.diff-card:hover .diff-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.diff-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ===== Clients Section ===== */
.clients {
    background: var(--bg-section);
}

.clients .section-header .btn {
    margin-top: 1.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.client-tile {
    aspect-ratio: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: default;
}

.client-tile:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-blue);
}

.client-tile span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.client-tile small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-tile.cta-tile {
    background: var(--primary);
    border-color: var(--primary);
}

.client-tile.cta-tile span {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tile-btn {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.client-tile.cta-tile:hover .tile-btn {
    transform: translateX(4px);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s ease;
    pointer-events: none;
    box-shadow: var(--shadow);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-card > p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    padding: 0;
}

.test-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ===== Contact / Why Partner Section ===== */
.why-partner {
    background: var(--bg-white);
    text-align: center;
    padding: 6rem 0;
}

.contact-clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-client {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    line-height: 1.4;
}

.contact-client:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
}

.contact-client small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    padding: 5rem 0 2rem;
    color: #CBD5E1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col a {
    display: block;
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta-btns .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: #CBD5E1;
}

.footer-cta-btns .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-location {
    display: flex;
    gap: 3rem;
}

.location-item h5 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    color: white;
}

.location-item p {
    font-size: 0.85rem;
    color: #64748B;
}

.footer-meta {
    text-align: right;
}

.footer-meta a {
    color: #94A3B8;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-meta a:hover { color: var(--primary-light); }

.footer-meta p {
    font-size: 0.8rem;
    color: #64748B;
    margin-top: 0.5rem;
}

.footer-meta p a { font-size: 0.8rem; }

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-block.reverse {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active { right: 0; }
    .nav-link { font-size: 1.1rem; color: var(--text-dark); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero { min-height: auto; padding: 4rem 1.5rem; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-desc { font-size: 0.95rem; }

    .dash-stat-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .contact-clients-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem; }

    .awards-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-block { padding: 2rem; }
    .phone-mockup { width: 220px; }

    .difference-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .footer-meta { text-align: left; }

    .highlight-number { font-size: 4rem; }
    .highlight-percent { font-size: 2rem; }

    .testimonial-card { padding: 2rem; }

    .top-bar .container { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
    section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .service-block { padding: 1.5rem; }
    .diff-card { padding: 2rem; }
    .industry-card { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
