/* ================================================================
   Gayathri Enterprises — Premium Dark-Theme Stylesheet v3
   Inspired by: Mavenir, VIAVI, Spirent, TEOCO, Subex, Netcracker,
                Infovista, Rohde&Schwarz, EXFO, Keysight, Anritsu
   ================================================================ */

:root {
    --bg: #060a14;
    --bg-2: #0a1020;
    --bg-3: #0f1729;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.05);
    --surface-3: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-2: rgba(255, 255, 255, 0.14);
    --text: #e6ebf5;
    --text-2: #9aa4b8;
    --text-3: #5d6878;
    --accent: #56ab2f;
    --accent-2: #a8e063;
    --accent-3: #4a9326;
    --accent-glow: rgba(86, 171, 47, 0.25);
    --cyan: #22d3ee;
    --blue: #6366f1;
    --pink: #f472b6;
    --yellow: #fbbf24;
    --red: #f87171;
    --green: #4ade80;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(86, 171, 47, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --max-width: 1240px;
    --header-h: 76px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-2); }

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

ul { list-style: none; }

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

.inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.grad-text {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.grad-text-2 {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Section spacing ── */
section { padding: 100px 0; position: relative; }
section.alt-bg { background: var(--bg-2); }

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(86, 171, 47, 0.3);
    color: var(--accent-2);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--font-mono);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-2); }

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(6, 10, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
header.scrolled {
    background: rgba(6, 10, 20, 0.9);
    box-shadow: var(--shadow-md);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    font-family: var(--font-head);
    letter-spacing: -0.01em;
}
.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px var(--border-2);
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo:hover { color: var(--text); }

nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
nav a {
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: all var(--transition);
}
nav a:hover { color: var(--text); background: var(--surface-2); }
nav a.active { color: var(--accent-2); }
nav a.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
    color: #fff;
    padding: 9px 18px;
    margin-left: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--accent-glow);
}
nav a.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(86, 171, 47, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    opacity: 0.6;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 18s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--blue); bottom: -100px; left: -100px; animation-delay: -6s; }
.hero-orb-3 { width: 250px; height: 250px; background: var(--cyan); top: 40%; left: 40%; animation-delay: -12s; opacity: 0.25; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.08); }
    66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}
.hero-content { flex: 1 1 0; min-width: 0; max-width: 640px; }
.hero-visual { flex: 0 0 auto; min-width: 0; width: 480px; max-width: 100%; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-2);
    font-family: var(--font-mono);
    margin-bottom: 24px;
}
.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.2); }
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
    font-size: 1.18rem;
    color: var(--text-2);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
    color: #fff;
    box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
    color: #fff;
}
.btn-ghost {
    background: var(--surface-2);
    color: var(--text);
    border-color: var(--border-2);
}
.btn-ghost:hover {
    background: var(--surface-3);
    border-color: var(--accent-2);
    color: var(--accent-2);
}
.btn-white { background: #fff; color: var(--bg); }
.btn-white:hover { background: var(--accent-2); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); color: #fff; }
.btn-white-lg {
    background: #fff;
    color: var(--bg);
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-white-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); color: var(--bg); }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    padding: 16px 32px;
    font-size: 1rem;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.05); color: #fff; }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--text-2);
}

/* ── Hero visual cards ── */
.hero-visual {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.visual-card {
    position: absolute;
    background: linear-gradient(145deg, rgba(20, 28, 48, 0.95) 0%, rgba(10, 16, 32, 0.95) 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
}
.visual-card-1 {
    top: 0; left: 0;
    width: 360px;
    z-index: 2;
    animation: floatA 6s ease-in-out infinite;
}
.visual-card-2 {
    bottom: 0; right: 0;
    width: 320px;
    z-index: 3;
    animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.vc-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}
.vc-dot { width: 9px; height: 9px; border-radius: 50%; }
.vc-dot-r { background: #ff5f57; }
.vc-dot-y { background: #ffbd2e; }
.vc-dot-g { background: #28c840; }
.vc-title {
    margin-left: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-3);
}
.vc-body { padding: 16px; }
.vc-body.vc-mono { font-family: var(--font-mono); font-size: 0.78rem; line-height: 1.8; color: var(--text-2); }
.vc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--text);
}
.vc-row + .vc-row { border-top: 1px dashed var(--border); }
.vc-k { color: var(--text-3); font-family: var(--font-mono); font-size: 0.78rem; }
.vc-v { color: var(--text); font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; }
.vc-ok { color: var(--green); }
.vc-bar {
    margin: 12px 0;
    height: 4px;
    background: var(--surface-2);
    border-radius: 2px;
    overflow: hidden;
}
.vc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    border-radius: 2px;
    animation: barFill 2.5s ease-out;
}
@keyframes barFill { from { width: 0; } }
.vc-row-status { padding-top: 10px; }
.vc-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
}
.vc-status-ok { background: rgba(74, 222, 128, 0.15); color: var(--green); border: 1px solid rgba(74, 222, 128, 0.3); }

.vc-ts { color: var(--text-3); }
.vc-info { color: var(--cyan); }
.vc-warn { color: var(--yellow); }
.vc-ok   { color: var(--green); }

.visual-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--border-2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 2px;
    animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ============ TRUST BAR ============ */
.trust-bar { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-label {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-2);
    margin-bottom: 28px;
}
.trust-label strong { color: var(--accent-2); font-weight: 600; }
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0.75;
}
.logo-pill {
    padding: 10px 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-2);
    font-family: var(--font-head);
    transition: all var(--transition);
}
.logo-pill:hover {
    background: var(--surface-3);
    border-color: var(--border-2);
    color: var(--text);
    transform: translateY(-2px);
}

/* ============ STATS ============ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    border-bottom: 1px solid var(--border);
}
.stats-section .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.stat-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }
.stat-num {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-head);
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
}
.stat-suffix {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--accent-2);
    line-height: 1;
    margin-left: 2px;
}
.stat-label {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    position: relative;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top right, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.service-card:hover {
    border-color: var(--border-2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { opacity: 1; }
.service-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-2);
    font-weight: 600;
    font-size: 0.88rem;
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; color: var(--accent-2); }

/* ============ WHY ============ */
.why-section {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.why-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(86, 171, 47, 0.08) 0%, transparent 50%);
}
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.why-left .section-tag { margin-bottom: 18px; }
.why-left h2 { margin-bottom: 18px; }
.why-lead { font-size: 1.08rem; color: var(--text-2); margin-bottom: 36px; line-height: 1.7; }
.why-checks { display: grid; gap: 22px; }
.why-check {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-check-ico {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-glow);
    border: 1px solid rgba(86, 171, 47, 0.3);
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-check strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 1.02rem; }
.why-check p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }

.why-right { display: grid; gap: 20px; }
.why-stat {
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.10) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px solid rgba(86, 171, 47, 0.25);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.why-stat:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-glow); }
.why-stat-2 { background: linear-gradient(135deg, rgba(99, 102, 241, 0.10) 0%, rgba(34, 211, 238, 0.06) 100%); border-color: rgba(99, 102, 241, 0.3); }
.why-stat-3 { background: linear-gradient(135deg, rgba(34, 211, 238, 0.10) 0%, rgba(86, 171, 47, 0.06) 100%); border-color: rgba(34, 211, 238, 0.3); }
.why-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}
.why-stat-lbl { color: var(--text-2); font-size: 0.95rem; }

/* ============ PROCESS ============ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.process-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-2);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 4px 10px;
    background: var(--accent-glow);
    border-radius: 100px;
    display: inline-block;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; line-height: 1.6; }

/* ============ INDUSTRIES ============ */
.industries-section { background: var(--bg-2); }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.industry-card {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-align: center;
}
.industry-card:hover {
    border-color: var(--border-2);
    background: var(--surface-2);
    transform: translateY(-4px);
}
.industry-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(86, 171, 47, 0.25);
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition);
}
.industry-ico svg { width: 28px; height: 28px; }
.industry-card:hover .industry-ico {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.08);
}
.industry-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.industry-card p { font-size: 0.88rem; color: var(--text-2); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.quote-mark {
    position: absolute;
    top: 16px; right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-author strong { display: block; color: var(--text); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-2); }

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, #0a2410 0%, #0a1020 50%, #0a0f2a 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}
.cta-orb-1 { width: 500px; height: 500px; background: var(--accent); top: -200px; right: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: var(--blue); bottom: -200px; left: -100px; }
.cta-banner .inner { text-align: center; position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 18px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 70px 0 0;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand p { font-size: 0.95rem; color: var(--text-2); margin: 16px 0 20px; max-width: 360px; }
.social { display: flex; gap: 10px; }
.social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}
.footer-col h4 {
    color: var(--text);
    margin-bottom: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent-2); }
.contact-list li { color: var(--text-2); font-size: 0.92rem; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-3); }
.footer-bottom a { color: var(--text-2); }
.footer-bottom a:hover { color: var(--accent-2); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { flex-direction: column; gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero-visual { height: 380px; max-width: 460px; margin: 0 auto; }
    .stats-section .inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .testimonials-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    section { padding: 80px 0; }
}
@media (max-width: 720px) {
    .menu-toggle { display: flex; }
    nav {
        position: absolute;
        top: var(--header-h); left: 0; right: 0;
        flex-direction: column;
        background: var(--bg-2);
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--border);
        display: none;
    }
    nav.open { display: flex; }
    nav a { width: 100%; padding: 12px 16px; }
    nav a.btn-cta { margin-left: 0; margin-top: 8px; text-align: center; }
    .hero { padding-top: 100px; min-height: auto; }
    .hero-visual { height: 320px; }
    .visual-card-1 { width: 260px; }
    .visual-card-2 { width: 240px; }
    .stats-section .inner { grid-template-columns: 1fr 1fr; }
    .services-grid, .testimonials-grid, .industries-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn, .cta-buttons .btn { justify-content: center; }
    section { padding: 60px 0; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(135deg, var(--bg-3) 0%, #0a0f20 100%);
    border-bottom: 1px solid var(--border);
    padding: 60px 28px 48px;
    text-align: center;
}
.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}
.page-banner p { font-size: 1.1rem; color: var(--text-2); }

/* ============ CONTENT PAGE ============ */
.content-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 28px 60px;
}
.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
    color: var(--text);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
    font-size: 1.2rem;
    margin: 28px 0 10px;
    color: var(--text);
}
.content-page p {
    margin-bottom: 16px;
    color: var(--text-2);
    line-height: 1.7;
}
.content-page ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
    color: var(--text-2);
}
.content-page ul li { margin-bottom: 8px; line-height: 1.6; }
.content-page strong { color: var(--text); }
.content-page a { color: var(--accent-2); text-decoration: underline; }

/* ============ SUBPAGE FOOTER (same as homepage) ============ */
.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3, .contact-form h3 { margin-bottom: 18px; font-size: 1.3rem; }
.contact-intro { margin-bottom: 24px; line-height: 1.7; }
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--text); font-size: 0.92rem; margin-bottom: 2px; }
.contact-item span { color: var(--text-2); font-size: 0.88rem; }
.info-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.info-box h4 { margin-bottom: 8px; color: var(--accent-2); }
.info-box p { color: var(--text-2); font-size: 0.9rem; line-height: 1.6; }
.info-box a { color: var(--accent-2); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    box-sizing: border-box;
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-3); color: var(--text); }
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.btn-submit:hover { background: var(--accent-3); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
}
.form-success.show { display: block; }
.form-success .check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.form-success h3 { color: var(--accent-2); }
.form-success p { color: var(--text-2); }

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-featured { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.pricing-featured .plan-header { background: linear-gradient(135deg, rgba(86,171,47,0.2), rgba(86,171,47,0.05)); }
.plan-header {
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.plan-header h3 { font-size: 1.2rem; margin-bottom: 12px; }
.plan-price {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-2); }
.plan-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.plan-features { padding: 24px; }
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .feat-yes { color: var(--accent-2); font-weight: 700; font-size: 1rem; }
.plan-features .feat-no { color: var(--text-3); }
.pricing-card .btn {
    display: block;
    margin: 8px 24px 24px;
    text-align: center;
}

/* ============ BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}
.blog-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 22px; }
.blog-card-date {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--accent-2);
    margin-bottom: 8px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }

/* ============ SERVICE GRID ============ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

/* ============ PORTFOLIO ============ */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 720px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}
.portfolio-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.portfolio-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* ============ TEAM ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 14px;
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent-2); margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }

/* ============ ABOUT PAGE SPECIFIC ============ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2,1fr); } }
.about-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.about-stat-num { font-size: 2rem; font-weight: 800; font-family: var(--font-head); color: var(--accent-2); }
.about-stat-lbl { font-size: 0.85rem; color: var(--text-2); margin-top: 4px; }

/* ================================================================
   PROFESSIONAL PAGE LAYOUT SYSTEM
   ================================================================ */

/* ── Page Hero ── */
.pro-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.pro-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(86,171,47,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pro-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pro-hero .inner { position: relative; z-index: 1; }
.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(86,171,47,0.3);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 20px;
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
}
.pro-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
.pro-hero h1 { font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 16px; }
.pro-hero p { font-size: 1.15rem; color: var(--text-2); max-width: 680px; line-height: 1.7; }

/* ── Section Wrappers ── */
.pro-section { padding: 80px 0; }
.pro-section.alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pro-section-header { text-align: center; margin-bottom: 56px; }
.pro-section-header h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 12px; }
.pro-section-header p { font-size: 1.05rem; color: var(--text-2); max-width: 600px; margin: 0 auto; }
.pro-section-header .pro-head-line {
    width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2));
    margin: 20px auto 0; border-radius: 2px;
}

/* ── Grid Systems ── */
.pro-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pro-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pro-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pro-grid-2x3 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 900px) { .pro-grid-2,.pro-grid-2x3{grid-template-columns:1fr} .pro-grid-3{grid-template-columns:repeat(2,1fr)} .pro-grid-4{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 600px) { .pro-grid-3,.pro-grid-4{grid-template-columns:1fr} }

/* ── Feature Cards ── */
.pro-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.pro-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity var(--transition);
}
.pro-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pro-card:hover::before { opacity: 1; }
.pro-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.pro-card:hover .pro-card-icon { transform: scale(1.08); }
.pro-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pro-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.65; }

/* Icon color variants */
.ico-green { background: rgba(86,171,47,0.15); border: 1px solid rgba(86,171,47,0.3); color: var(--accent-2); }
.ico-blue { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); color: #818cf8; }
.ico-cyan { background: rgba(34,211,238,0.15); border: 1px solid rgba(34,211,238,0.3); color: var(--cyan); }
.ico-pink { background: rgba(244,114,182,0.15); border: 1px solid rgba(244,114,182,0.3); color: var(--pink); }
.ico-yellow { background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3); color: var(--yellow); }
.ico-purple { background: rgba(167,139,250,0.15); border: 1px solid rgba(167,139,250,0.3); color: #a78bfa; }
.ico-red { background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.3); color: var(--red); }
.ico-teal { background: rgba(45,212,191,0.15); border: 1px solid rgba(45,212,191,0.3); color: #2dd4bf; }

/* ── Stats Row ── */
.pro-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pro-stat-item {
    background: var(--surface);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition);
}
.pro-stat-item:hover { background: var(--surface-2); }
.pro-stat-num { font-size: 2.4rem; font-weight: 800; font-family: var(--font-head); color: var(--accent-2); line-height: 1; }
.pro-stat-lbl { font-size: 0.85rem; color: var(--text-2); margin-top: 8px; font-weight: 500; }
@media (max-width: 720px) { .pro-stats { grid-template-columns: repeat(2,1fr); } }

/* ── Service Detail Row ── */
.pro-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}
.pro-service-row:nth-child(even) { direction: rtl; }
.pro-service-row:nth-child(even) > * { direction: ltr; }
.pro-service-row + .pro-service-row { border-top: 1px solid var(--border); }
.pro-service-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.pro-service-info p { font-size: 1.02rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.pro-service-bullets { list-style: none; }
.pro-service-bullets li {
    padding: 10px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
    font-size: 0.92rem; color: var(--text);
}
.pro-service-bullets li:last-child { border-bottom: none; }
.pro-bullet-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent-glow); color: var(--accent-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
}
.pro-service-visual {
    background: linear-gradient(135deg, rgba(86,171,47,0.08), rgba(99,102,241,0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pro-service-visual .pro-sv-icon { font-size: 4rem; margin-bottom: 16px; }
.pro-service-visual .pro-sv-code {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-3);
    line-height: 1.8;
}
@media (max-width: 900px) {
    .pro-service-row { grid-template-columns: 1fr; gap: 30px; }
    .pro-service-row:nth-child(even) { direction: ltr; }
}

/* ── Pricing Cards ── */
.pro-price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
@media (max-width: 960px) { .pro-price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.pro-price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.pro-price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pro-price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: scale(1.03);
    z-index: 2;
}
.pro-price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pro-price-top {
    padding: 36px 30px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.price-ribbon {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.price-amount { font-size: 3.2rem; font-weight: 800; font-family: var(--font-head); color: var(--text); line-height: 1; }
.price-amount .currency { font-size: 1.4rem; vertical-align: super; font-weight: 600; }
.price-amount .period { font-size: 0.9rem; font-weight: 400; color: var(--text-3); }
.price-desc { font-size: 0.85rem; color: var(--text-3); margin-top: 6px; }
.pro-price-body { padding: 24px 30px 30px; }
.pro-price-features { list-style: none; }
.pro-price-features li {
    padding: 10px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--text-2);
}
.pro-price-features li:last-child { border-bottom: none; }
.price-check { color: var(--accent-2); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.price-cross { color: var(--text-3); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.pro-price-card .btn { display: block; margin: 20px 30px 30px; text-align: center; }

/* ── Portfolio / Case Study Cards ── */
.pro-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 960px) { .pro-portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .pro-portfolio-grid { grid-template-columns: 1fr; } }
.pro-case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.pro-case-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.pro-case-top {
    padding: 32px 28px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(86,171,47,0.06), rgba(99,102,241,0.04));
}
.pro-case-icon { font-size: 2.4rem; margin-bottom: 16px; }
.pro-case-top h3 { font-size: 1.1rem; line-height: 1.4; }
.pro-case-body { padding: 24px 28px; }
.pro-case-body p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }
.pro-case-meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    padding: 16px 28px 24px;
    font-size: 0.8rem; color: var(--text-3);
    font-family: var(--font-mono);
}
.pro-case-meta span { display: flex; align-items: center; gap: 6px; }

/* ── Blog Article Cards ── */
.pro-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 960px) { .pro-blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .pro-blog-grid { grid-template-columns: 1fr; } }
.pro-article-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex; flex-direction: column;
}
.pro-article-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.pro-article-img {
    height: 180px;
    background: linear-gradient(135deg, rgba(86,171,47,0.15), rgba(99,102,241,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--border);
}
.pro-article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pro-article-meta {
    display: flex; gap: 14px; align-items: center;
    font-size: 0.78rem; color: var(--text-3);
    font-family: var(--font-mono);
    margin-bottom: 12px;
}
.pro-article-meta .pro-tag {
    padding: 3px 10px; border-radius: 100px;
    background: var(--accent-glow); color: var(--accent-2);
    font-weight: 600; font-size: 0.7rem;
    letter-spacing: 0.03em;
}
.pro-article-body h3 { font-size: 1.1rem; line-height: 1.4; margin-bottom: 10px; }
.pro-article-body p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.pro-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent-2); font-weight: 600; font-size: 0.85rem;
    margin-top: 16px;
}
.pro-read-more:hover { gap: 10px; }

/* ── Contact Split Layout ── */
.pro-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .pro-contact-grid { grid-template-columns: 1fr; } }
.pro-contact-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.pro-contact-info > p { color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.pro-contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; margin-bottom: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.pro-contact-card:hover { border-color: var(--border-2); background: var(--surface-2); }
.pro-contact-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.pro-contact-card strong { display: block; color: var(--text); font-size: 0.93rem; margin-bottom: 3px; }
.pro-contact-card span { font-size: 0.85rem; color: var(--text-2); }
.pro-contact-card a { color: var(--accent-2); }
.pro-contact-form {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px;
}
.pro-contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; }
.pro-field { margin-bottom: 18px; }
.pro-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.pro-field input, .pro-field select, .pro-field textarea {
    width: 100%; background: var(--bg-3); border: 1px solid var(--border-2);
    border-radius: 10px; padding: 12px 16px; color: var(--text);
    font-family: var(--font-body); font-size: 0.92rem;
    transition: all var(--transition); box-sizing: border-box;
}
.pro-field input:focus, .pro-field select:focus, .pro-field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.pro-field textarea { min-height: 140px; resize: vertical; }
.pro-field select { cursor: pointer; }
.pro-field select option { background: var(--bg-3); color: var(--text); }
.pro-submit {
    width: 100%; padding: 14px; background: var(--accent); color: #fff;
    border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; font-family: var(--font-body);
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pro-submit:hover { background: var(--accent-3); }

/* ── Privacy / Legal ── */
.pro-legal { max-width: 800px; }
.pro-legal h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--text); }
.pro-legal h2:first-of-type { margin-top: 0; }
.pro-legal h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text-2); }
.pro-legal p { color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.pro-legal ul { list-style: disc; padding-left: 22px; color: var(--text-2); margin-bottom: 18px; }
.pro-legal ul li { margin-bottom: 8px; line-height: 1.6; }
.pro-legal strong { color: var(--text); }
.pro-legal a { color: var(--accent-2); text-decoration: underline; }

/* ── Timeline ── */
.pro-timeline { position: relative; padding-left: 40px; }
.pro-timeline::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: var(--border);
}
.pro-timeline-item { position: relative; margin-bottom: 36px; }
.pro-timeline-item::before {
    content: ''; position: absolute; left: -33px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--accent);
}
.pro-timeline-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.pro-timeline-item p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.pro-timeline-item .pro-timeline-date {
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--accent-2); margin-bottom: 6px;
}

/* ── Callout Box ── */
.pro-callout {
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid;
    margin: 24px 0;
    line-height: 1.6;
}
.pro-callout.info { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.3); color: var(--text); }
.pro-callout.success { background: rgba(86,171,47,0.08); border-color: rgba(86,171,47,0.3); }
.pro-callout.warning { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.3); }
.pro-callout strong { display: block; margin-bottom: 4px; }

/* ── Back to top ── */
.back-top {
    position: fixed; bottom: 90px; right: 28px; z-index: 998;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface-2); border: 1px solid var(--border);
    color: var(--text-2); display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; transition: all var(--transition);
    opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
