/* ============================================================
   DG TECH SOLUTIONS — Light Modern Theme
   ============================================================ */

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

:root {
    --navy: #0B1D2E;
    --navy-mid: #122A3F;
    --dark: #1A2332;
    --blue-900: #0C3B5E;
    --blue-700: #1A5F9E;
    --blue-600: #2471A3;
    --blue-500: #2E86C1;
    --blue-400: #5AADE0;
    --blue-300: #85C1E9;
    --blue-200: #AED6F1;
    --blue-100: #D6EAF8;
    --blue-50: #EBF5FB;
    --gray-900: #1B2631;
    --gray-700: #2C3E50;
    --gray-600: #566573;
    --gray-500: #808B96;
    --gray-400: #ABB2B9;
    --gray-300: #D5D8DC;
    --gray-200: #EAECEE;
    --gray-100: #F4F6F7;
    --gray-50: #FAFBFC;
    --white: #FFFFFF;
    --accent: #00C9A7;
    --accent-light: #E0FFF8;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(46,134,193,0.15);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-w: 1200px;
    --gap: clamp(1rem, 3vw, 2rem);
    --section-pad: clamp(5rem, 12vw, 9rem);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--gray-50);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--blue-700); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(1deg); }
    66% { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 40% 70% 60% 30%; }
    75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
}
@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.7; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-40px) translateX(5px); opacity: 0.6; }
}

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ PARTICLES CANVAS ============ */
#particles-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}

/* ============ NAV ============ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0; transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06); padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap);
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo img { height: 34px; width: auto; transition: all 0.3s; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--white); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.01em; transition: all 0.3s; position: relative;
}
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--blue-500); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--blue-500); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--blue-500) !important; color: var(--white) !important;
    padding: 0.55rem 1.4rem; border-radius: 10px;
    font-weight: 600; font-size: 0.85rem; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46,134,193,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-600) !important; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(46,134,193,0.35); }

.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 5px; z-index: 1001;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--white);
    transition: all 0.3s; border-radius: 2px;
}
.nav.scrolled .hamburger span { background: var(--gray-700); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 7rem 0 5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-900) 40%, var(--blue-700) 100%);
    background-size: 200% 200%; animation: gradient-shift 15s ease infinite;
}
.hero-blob-1 {
    position: absolute; top: -15%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,134,193,0.25) 0%, transparent 70%);
    animation: blob 20s ease-in-out infinite; z-index: 0;
}
.hero-blob-2 {
    position: absolute; bottom: -20%; left: -15%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,201,167,0.15) 0%, transparent 70%);
    animation: blob 25s ease-in-out infinite reverse; z-index: 0;
}

.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
    align-items: center; position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50px;
    font-size: 0.8rem; color: var(--blue-200); font-weight: 500;
    margin-bottom: 1.5rem; backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease both;
}
.hero-badge-dot {
    width: 8px; height: 8px; background: var(--accent);
    border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    color: var(--white); line-height: 1.08; letter-spacing: -0.03em;
    margin-bottom: 1.5rem; animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue-300), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--blue-200);
    max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8;
    animation: fadeUp 0.8s ease 0.2s both;
}
.hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 12px; font-weight: 600;
    font-size: 0.95rem; font-family: var(--font-body);
    cursor: pointer; border: none; transition: all 0.4s;
}
.btn-primary {
    background: var(--white); color: var(--blue-700);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    color: var(--blue-700);
}
.btn-ghost {
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px); color: var(--white);
}
.btn-blue {
    background: var(--blue-500); color: var(--white);
    box-shadow: 0 4px 20px rgba(46,134,193,0.3);
}
.btn-blue:hover {
    background: var(--blue-600); transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(46,134,193,0.35); color: var(--white);
}
.btn-outline {
    background: transparent; color: var(--blue-600);
    border: 2px solid var(--blue-200);
}
.btn-outline:hover {
    border-color: var(--blue-500); background: var(--blue-50);
    transform: translateY(-3px); color: var(--blue-600);
}

/* Hero right visual */
.hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    animation: fadeUp 0.8s ease 0.4s both;
}
.hero-app-mockup {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
    padding: 0; overflow: hidden; width: 100%; max-width: 420px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3); animation: float 6s ease-in-out infinite;
}
.mockup-bar {
    display: flex; align-items: center; gap: 6px; padding: 14px 18px;
    background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
    margin-left: 12px; font-size: 0.72rem; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06); padding: 4px 14px;
    border-radius: 6px; flex: 1; font-family: 'DM Sans', monospace;
}
.mockup-body { padding: 1.5rem; }
.mockup-header {
    height: 12px; width: 55%; background: rgba(255,255,255,0.2);
    border-radius: 6px; margin-bottom: 8px;
}
.mockup-subheader {
    height: 8px; width: 80%; background: rgba(255,255,255,0.08);
    border-radius: 4px; margin-bottom: 20px;
}
.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.mockup-stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 14px 10px; text-align: center;
}
.mockup-stat-num {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    color: var(--white); margin-bottom: 2px;
}
.mockup-stat-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.mockup-chart {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 16px; height: 100px;
    display: flex; align-items: flex-end; gap: 8px;
}
.mockup-chart-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(46,134,193,0.3), rgba(46,134,193,0.7));
    transition: height 0.3s;
}

/* Floating orbs around mockup */
.hero-orb {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-orb-1 { width: 60px; height: 60px; top: 10%; right: -5%; animation: float-slow 7s ease-in-out infinite; }
.hero-orb-2 { width: 40px; height: 40px; bottom: 20%; left: -8%; animation: float-slow 9s ease-in-out infinite 1s; }
.hero-orb-3 { width: 30px; height: 30px; top: 50%; right: -15%; animation: float-slow 6s ease-in-out infinite 0.5s; }

/* Hero stats bar */
.hero-stats-bar {
    position: relative; z-index: 3; margin-top: -2.5rem;
}
.hero-stats-inner {
    background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-xl);
    padding: 2rem 3rem; display: flex; justify-content: space-around;
    box-shadow: var(--shadow-xl);
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
    color: var(--blue-700); line-height: 1.1;
}
.hero-stat-number .counter-suffix { font-size: 1.4rem; color: var(--accent); }
.hero-stat-label { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.2rem; font-weight: 500; }

/* ============ SECTION STYLES ============ */
section { padding: var(--section-pad) 0; position: relative; }

.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue-500); margin-bottom: 1rem;
    padding: 0.35rem 1rem; background: var(--blue-50);
    border: 1px solid var(--blue-100); border-radius: 50px;
}
.section-label-dot {
    width: 6px; height: 6px; background: var(--blue-500); border-radius: 50%;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900); line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 1rem; font-weight: 700;
}
.section-sub {
    font-size: 1.05rem; color: var(--gray-500); max-width: 580px; margin-bottom: 3.5rem;
}
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2.2rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--blue-400), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.service-card:hover {
    border-color: var(--blue-200); transform: translateY(-8px);
    box-shadow: var(--shadow-lg); background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; margin-bottom: 1.3rem;
    transition: all 0.5s;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    transform: scale(1.05) rotate(-3deg);
}
.service-card:hover .service-icon-emoji { filter: brightness(10); }
.service-card h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ============ PORTFOLIO ============ */
.portfolio { background: var(--gray-50); }
.portfolio-showcase {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-md); transition: all 0.5s;
}
.portfolio-showcase:hover { box-shadow: var(--shadow-lg); }
.portfolio-content { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.portfolio-info { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.portfolio-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.portfolio-tag::before {
    content: ''; width: 8px; height: 8px; background: var(--accent);
    border-radius: 50%;
}
.portfolio-info h3 {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 1rem;
}
.portfolio-info p { color: var(--gray-500); margin-bottom: 1.5rem; font-size: 0.95rem; }
.portfolio-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.portfolio-features span {
    padding: 0.4rem 0.9rem; background: var(--blue-50);
    border: 1px solid var(--blue-100); border-radius: 8px;
    font-size: 0.78rem; color: var(--blue-600); font-weight: 500;
    transition: all 0.3s;
}
.portfolio-features span:hover { background: var(--blue-100); border-color: var(--blue-200); }

.portfolio-visual {
    background: linear-gradient(135deg, var(--navy), var(--blue-900));
    display: flex; align-items: center; justify-content: center;
    padding: 3rem; position: relative; overflow: hidden;
}
.portfolio-visual::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(46,134,193,0.15), transparent 70%);
}
.pf-mockup {
    width: 100%; max-width: 380px; background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3); position: relative;
    animation: float 8s ease-in-out infinite;
}

/* ============ ABOUT ============ */
.about { background: var(--white); overflow: hidden; }

/* Team Grid - Two cards side by side */
.team-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    margin-bottom: 3rem;
}
.team-card {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
    padding: 2.5rem; text-align: center; position: relative;
    transition: all 0.5s; overflow: hidden;
}
.team-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--blue-400), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.team-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-6px);
    border-color: var(--blue-200);
}
.team-card:hover::before { transform: scaleX(1); }
.about-photo {
    width: 140px; height: 140px; border-radius: 50%;
    margin: 0 auto 1.5rem; overflow: hidden;
    border: 4px solid var(--white); box-shadow: 0 10px 40px rgba(46,134,193,0.15);
    transition: all 0.5s;
}
.team-card:hover .about-photo {
    box-shadow: 0 15px 50px rgba(46,134,193,0.25);
    transform: scale(1.03);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card h3 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 0.3rem;
}
.team-card .about-role {
    color: var(--blue-500); font-size: 0.88rem; margin-bottom: 1rem; font-weight: 500;
}
.team-bio {
    font-size: 0.88rem; color: var(--gray-500); line-height: 1.65;
    margin-bottom: 1.5rem;
}
.team-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
}
.team-tags span {
    padding: 0.3rem 0.8rem; background: var(--blue-50);
    border: 1px solid var(--blue-100); border-radius: 50px;
    font-size: 0.72rem; color: var(--blue-600); font-weight: 600;
    transition: all 0.3s;
}
.team-tags span:hover { background: var(--blue-100); border-color: var(--blue-200); }

/* Values bar */
.about-values-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.about-value {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: 1.2rem; border-radius: 14px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    transition: all 0.4s;
}
.about-value:hover { border-color: var(--blue-200); background: var(--blue-50); transform: translateY(-2px); }
.about-value-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 1rem;
}
.about-value strong { display: block; font-size: 0.88rem; color: var(--gray-900); margin-bottom: 0.1rem; }
.about-value span { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

/* ============ PRICING ============ */
.pricing { background: var(--gray-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 2.5rem 2rem;
    position: relative; transition: all 0.5s; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--blue-300);
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 40%);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured:hover { box-shadow: var(--shadow-xl); }
.pricing-popular {
    position: absolute; top: 0; right: 0; left: 0;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    color: var(--white); padding: 0.4rem; text-align: center;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.pricing-card.featured { padding-top: 3.5rem; }
.pricing-name {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--blue-500); margin-bottom: 0.5rem;
}
.pricing-price {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 0.3rem;
}
.pricing-price span { font-size: 1rem; color: var(--gray-400); font-weight: 400; }
.pricing-desc {
    font-size: 0.88rem; color: var(--gray-500); margin-bottom: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200);
}
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.8rem;
}
.pricing-check {
    width: 20px; height: 20px; min-width: 20px;
    background: var(--accent-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: var(--accent); font-weight: 700;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: all 0.5s; position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.testimonial-quote {
    font-size: 2.5rem; color: var(--blue-200); font-family: Georgia, serif;
    line-height: 1; margin-bottom: 0.5rem;
}
.testimonial-stars { color: #F59E0B; margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: 0.92rem; color: var(--gray-600); font-style: italic;
    line-height: 1.75; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--white); font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--gray-900); }
.testimonial-author span { font-size: 0.78rem; color: var(--gray-500); }

/* ============ FAQ ============ */
.faq { background: var(--gray-50); }
.faq-layout { display: grid; grid-template-columns: 0.4fr 1fr; gap: 4rem; align-items: start; }
.faq-list { }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.8rem; background: var(--white); overflow: hidden; transition: all 0.4s; }
.faq-item:hover { border-color: var(--blue-200); }
.faq-item.active { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 1.5rem; cursor: pointer; background: none; border: none;
    width: 100%; text-align: left; color: var(--gray-900);
    font-size: 0.98rem; font-weight: 600; font-family: var(--font-body); transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-600); }
.faq-icon {
    width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
    background: var(--gray-100); display: flex; align-items: center;
    justify-content: center; font-size: 1rem; color: var(--blue-500);
    transition: all 0.3s;
}
.faq-item.active .faq-icon { background: var(--blue-500); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.75; padding: 0 1.5rem 1.5rem; }

/* ============ CTA / CONTACT ============ */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--blue-900));
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,134,193,0.15), transparent 70%);
    animation: blob 20s ease-in-out infinite;
}
.cta-section::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,201,167,0.1), transparent 70%);
    animation: blob 25s ease-in-out infinite reverse;
}
.cta-content {
    text-align: center; position: relative; z-index: 2;
    max-width: 680px; margin: 0 auto;
}
.cta-content .section-label { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: var(--blue-200); }
.cta-content .section-label-dot { background: var(--accent); }
.cta-content .section-title { color: var(--white); }
.cta-content .section-sub { color: var(--blue-200); margin-left: auto; margin-right: auto; }
.contact-channels { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.contact-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.95rem 1.8rem; border-radius: 14px;
    font-weight: 600; font-size: 0.95rem; transition: all 0.4s;
    border: none; cursor: pointer; font-family: var(--font-body);
}
.contact-btn.messenger { background: #0084FF; color: var(--white); box-shadow: 0 4px 20px rgba(0,132,255,0.3); }
.contact-btn.messenger:hover { background: #006FDB; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,132,255,0.4); color: var(--white); }
.contact-btn.whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.contact-btn.whatsapp:hover { background: #1DA855; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); color: var(--white); }
.contact-btn.email {
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px);
}
.contact-btn.email:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: var(--white); }

.contact-info {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item { text-align: center; }
.contact-info-item strong {
    display: block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue-300); margin-bottom: 0.3rem;
}
.contact-info-item span { font-size: 0.92rem; color: var(--blue-200); }

/* ============ FOOTER ============ */
.footer {
    padding: 2.5rem 0; background: var(--white);
    border-top: 1px solid var(--gray-200);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer p { font-size: 0.85rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray-400); font-size: 0.85rem; font-weight: 500; }
.footer-links a:hover { color: var(--blue-500); }

/* ============ MOBILE ============ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(11,29,46,0.98); backdrop-filter: blur(20px);
        justify-content: center; align-items: center; gap: 2rem; z-index: 999;
    }
    .nav-links.open a { font-size: 1.4rem; color: var(--white) !important; }
    .hamburger { display: flex; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 2rem; }
    .hero-stats-inner { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; }
    .portfolio-content { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
            .team-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
            .about-values-bar { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card:last-child { grid-column: auto; max-width: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:last-child { grid-column: auto; max-width: none; }
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .about-values { grid-template-columns: 1fr; }
    .about-values-bar { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-channels { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; justify-content: center; }
}
