/* ══════════════════════════════════════════════════════════
   SYNERGIA NETWORK - Design System & Styles
   ══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --primary: #0A1628;
    --primary-light: #0F1E33;
    --secondary: #1E3A5F;
    --accent: #4DA8DA;
    --accent-hover: #5BB8E8;
    --highlight: #89CFF0;
    --text: #E8F1F8;
    --text-muted: #7B9AB8;
    --text-dim: #4A6A8A;
    --bg-dark: #080E1A;
    --bg-body: #0A1222;
    --bg-card: rgba(15, 30, 51, 0.6);
    --bg-glass: rgba(15, 30, 51, 0.4);
    --border: rgba(77, 168, 218, 0.12);
    --border-hover: rgba(77, 168, 218, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(77, 168, 218, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

::selection {
    background: rgba(77, 168, 218, 0.3);
    color: var(--text);
}

/* ─── Utility Classes ───────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.section-tag .dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(77, 168, 218, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.section-title .gradient {
    background: linear-gradient(135deg, var(--highlight), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(77, 168, 218, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(77, 168, 218, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(77, 168, 218, 0.05);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ─── Animations ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition);
}

.nav.scrolled {
    padding: 0.7rem 0;
    background: rgba(8, 14, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform var(--transition), filter var(--transition);
    filter: drop-shadow(0 2px 6px rgba(77, 168, 218, 0.15));
}

.nav.scrolled .nav-logo-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-5deg) scale(1.05);
    filter: drop-shadow(0 3px 10px rgba(77, 168, 218, 0.3));
}

.footer .nav-logo-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(77, 168, 218, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .section-tag {
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Active nav link for current page */
.nav-link.current {
    color: var(--accent);
}

.nav-link.current::after {
    width: 100%;
    opacity: 1;
}

/* Legacy fallback */
.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 4px 16px rgba(77, 168, 218, 0.2);
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 168, 218, 0.3);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   HERO — Modern Animated
   ══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* ─── Animated Background ───────────────────────────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77, 168, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 168, 218, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.1), transparent 70%);
    top: -250px;
    right: -200px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.15), transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(137, 207, 240, 0.08), transparent 70%);
    top: 35%;
    left: 45%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(1.05); }
    50% { transform: translate(20px, -20px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.02); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 20px) scale(0.96); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-25px, 35px) scale(1.15); opacity: 1; }
}

/* ─── Particle Canvas ────────────────────────────────────── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ─── Floating Shapes ────────────────────────────────────── */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(77, 168, 218, 0.12);
    border-radius: 4px;
    opacity: 0;
    animation: shapeFloat 12s ease-in-out infinite;
}

.hero-shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 8%;
    transform: rotate(45deg);
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-shape-2 {
    width: 30px;
    height: 30px;
    top: 65%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-shape-3 {
    width: 45px;
    height: 45px;
    top: 25%;
    right: 25%;
    transform: rotate(20deg);
    border-color: rgba(137, 207, 240, 0.1);
    animation-delay: 4s;
    animation-duration: 16s;
}

.hero-shape-4 {
    width: 20px;
    height: 20px;
    top: 75%;
    right: 35%;
    border-radius: 50%;
    border-color: rgba(77, 168, 218, 0.08);
    animation-delay: 1s;
    animation-duration: 11s;
}

.hero-shape-5 {
    width: 50px;
    height: 50px;
    top: 45%;
    right: 5%;
    transform: rotate(60deg);
    border-color: rgba(77, 168, 218, 0.06);
    animation-delay: 3s;
    animation-duration: 18s;
}

@keyframes shapeFloat {
    0%, 100% { opacity: 0; transform: translateY(20px) rotate(0deg); }
    10% { opacity: 0.5; }
    50% { opacity: 0.8; transform: translateY(-30px) rotate(180deg); }
    90% { opacity: 0.3; }
}

/* ─── Scan Line Effect ──────────────────────────────────── */
.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(77, 168, 218, 0.15), transparent);
    animation: scanMove 6s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ─── Hero Layout ────────────────────────────────────────── */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ─── Badge ──────────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(77, 168, 218, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.8s ease forwards 0.2s;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(77, 168, 218, 0.6);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(77, 168, 218, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 20px rgba(77, 168, 218, 0.3); }
}

/* ─── Title ──────────────────────────────────────────────── */
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .line {
    display: block;
    opacity: 0;
    transform: translateY(25px);
}

.hero h1 .line:nth-child(1) { animation: heroFadeUp 0.7s ease forwards 0.4s; }
.hero h1 .line:nth-child(2) { animation: heroFadeUp 0.7s ease forwards 0.55s; }
.hero h1 .line:nth-child(3) { animation: heroFadeUp 0.7s ease forwards 0.7s; }

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--accent) 50%, #3A8FBF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroFadeUp 0.7s ease forwards 0.55s, gradientShift 6s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Description ────────────────────────────────────────── */
.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.85s;
}

/* ─── Actions ────────────────────────────────────────────── */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 1s;
}

/* ─── Stats ──────────────────────────────────────────────── */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 1.15s;
}

.hero-stat {
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ─── Hero Visual (Right Side) ───────────────────────────── */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(40px);
    animation: heroSlideIn 1s ease forwards 0.6s;
}

@keyframes heroSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

/* Terminal Window */
.hero-terminal {
    width: 100%;
    max-width: 480px;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(77, 168, 218, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}

.hero-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(15, 30, 51, 0.6);
    border-bottom: 1px solid var(--border);
}

.hero-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-terminal-dot:nth-child(1) { background: #ff5f57; }
.hero-terminal-dot:nth-child(2) { background: #ffbd2e; }
.hero-terminal-dot:nth-child(3) { background: #28c840; }

.hero-terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.hero-terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 2;
    color: var(--text-muted);
    min-height: 260px;
}

.hero-terminal-line {
    opacity: 0;
    transform: translateY(5px);
    white-space: nowrap;
    overflow: hidden;
}

.hero-terminal-line:nth-child(1) { animation: termLine 0.4s ease forwards 1.2s; }
.hero-terminal-line:nth-child(2) { animation: termLine 0.4s ease forwards 1.5s; }
.hero-terminal-line:nth-child(3) { animation: termLine 0.4s ease forwards 1.8s; }
.hero-terminal-line:nth-child(4) { animation: termLine 0.4s ease forwards 2.1s; }
.hero-terminal-line:nth-child(5) { animation: termLine 0.4s ease forwards 2.4s; }
.hero-terminal-line:nth-child(6) { animation: termLine 0.4s ease forwards 2.7s; }
.hero-terminal-line:nth-child(7) { animation: termLine 0.4s ease forwards 3.0s; }
.hero-terminal-line:nth-child(8) { animation: termLine 0.4s ease forwards 3.3s; }

@keyframes termLine {
    to { opacity: 1; transform: translateY(0); }
}

.t-comment { color: #4A6A8A; }
.t-keyword { color: #c792ea; }
.t-function { color: #82AAFF; }
.t-string { color: #c3e88d; }
.t-accent { color: var(--accent); }
.t-operator { color: #89DDFF; }
.t-number { color: #F78C6C; }
.t-prompt { color: var(--accent); }
.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1.2s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Glow ring behind terminal */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.04) 0%, transparent 65%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--highlight), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(77, 168, 218, 0.1), rgba(30, 58, 95, 0.2));
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(77, 168, 218, 0.15), rgba(30, 58, 95, 0.3));
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(77, 168, 218, 0.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    padding: 4px 12px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid rgba(77, 168, 218, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   PROCESS / HOW WE WORK
   ══════════════════════════════════════════════════════════ */
.process-section {
    background: var(--bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 52px;
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 1px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    transition: all var(--transition);
}

.process-card:hover .process-number {
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(77, 168, 218, 0.3);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   ABOUT / MISSION
   ══════════════════════════════════════════════════════════ */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 1.2rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-title span {
    color: var(--accent);
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-card {
    padding: 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.value-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About visual */
.about-visual {
    position: relative;
}

.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(77, 168, 218, 0.04), transparent 50%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(77, 168, 218, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about-stat:hover {
    border-color: var(--border-hover);
    background: rgba(77, 168, 218, 0.06);
}

.about-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   TECH STACK
   ══════════════════════════════════════════════════════════ */
.tech-section {
    background: var(--bg-body);
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.tech-category-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(77, 168, 218, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.tech-item:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: rgba(77, 168, 218, 0.08);
    transform: translateY(-2px);
}

.tech-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   PORTFOLIO / PROJECTS
   ══════════════════════════════════════════════════════════ */
.portfolio-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.portfolio-preview {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-preview-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 20px 20px;
}

.portfolio-preview-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 1;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.portfolio-body {
    padding: 1.8rem;
}

.portfolio-type {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.portfolio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.portfolio-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    padding: 4px 10px;
    background: rgba(77, 168, 218, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-star {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.testimonial-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: var(--bg-card);
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(15, 30, 51, 0.8);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(77, 168, 218, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 18, 34, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A6A8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--primary);
    color: var(--text);
}

.form-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), #3A8FBF);
    color: var(--text);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 168, 218, 0.3);
}

.form-submit svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-body);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(3rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.08), transparent 60%);
    border-radius: 50%;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social-link:hover {
    border-color: var(--accent);
    background: rgba(77, 168, 218, 0.1);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: fill var(--transition);
}

.footer-social-link:hover svg {
    fill: var(--accent);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.35rem 0;
    transition: color var(--transition), transform var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-bottom a {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-line {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-logo-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .nav.scrolled .nav-logo-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .nav-logo-text {
        font-size: 1rem;
    }

    .nav-logo {
        gap: 8px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .hero-shapes {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(8, 14, 26, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        border-left: 1px solid var(--border);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .nav-logo-text {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header h1 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
