/* ========================================
   myollo.studio — OllO Studio
   Premium Deep Blue / Teal / Cyan Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --deep: #080e1a;
    --deep-mid: #0c1829;
    --deep-blue: #0f2137;
    --blue: #163a5f;
    --teal: #0d7377;
    --teal-light: #14919b;
    --cyan: #0cf0db;
    --cyan-glow: rgba(12, 240, 219, 0.15);
    --cyan-soft: #a8f0e6;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(8,14,26,0.06);
    --shadow-md: 0 8px 30px rgba(8,14,26,0.1);
    --shadow-lg: 0 20px 60px rgba(8,14,26,0.15);
    --shadow-glow: 0 0 40px rgba(12,240,219,0.2);
    --shadow-glow-strong: 0 0 60px rgba(12,240,219,0.3);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 10px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CURSOR GLOW (desktop only) ===== */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,240,219,0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 0;
    transition: var(--transition);
}

.main-nav.scrolled {
    background: rgba(8, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-mark {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--cyan), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--deep);
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: var(--cyan);
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-200);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--cyan); }

.nav-cta {
    background: linear-gradient(135deg, var(--cyan), var(--teal-light)) !important;
    color: var(--deep) !important;
    font-weight: 600 !important;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    margin-left: 12px;
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    color: var(--deep) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--teal-light));
    color: var(--deep);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--deep);
    color: var(--cyan);
}

.btn-dark:hover {
    background: var(--deep-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: var(--white);
    color: var(--deep);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--deep);
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 700px at 70% 40%, rgba(13,115,119,0.2), transparent),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(12,240,219,0.06), transparent),
        radial-gradient(ellipse 400px 400px at 90% 90%, rgba(15,33,55,0.8), transparent);
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(12,240,219,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12,240,219,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(12,240,219,0.08);
    top: -100px; right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(13,115,119,0.12);
    bottom: -50px; left: 10%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text { max-width: 600px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan-glow);
    border: 1px solid rgba(12,240,219,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease-out;
}

.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease-out 0.15s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--teal-light), var(--cyan-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.12rem;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.45s both;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-card-1 {
    width: 75%;
    aspect-ratio: 4/3;
    top: 5%;
    left: 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--blue));
    border: 1px solid rgba(12,240,219,0.15);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
}

.hero-card-1 .card-browser-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 16px; left: 20px;
}

.card-browser-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
}

.card-browser-dots span:nth-child(1) { background: #ff6058; }
.card-browser-dots span:nth-child(2) { background: #ffbd2e; }
.card-browser-dots span:nth-child(3) { background: #27ca40; }

.hero-card-1 .card-lines {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.card-line {
    height: 8px;
    background: rgba(12,240,219,0.1);
    border-radius: 4px;
}

.card-line:nth-child(1) { width: 60%; background: rgba(12,240,219,0.2); }
.card-line:nth-child(2) { width: 100%; }
.card-line:nth-child(3) { width: 80%; }
.card-line:nth-child(4) { width: 45%; background: rgba(12,240,219,0.15); }

.hero-card-2 {
    width: 55%;
    aspect-ratio: 3/4;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    color: var(--deep);
}

.hero-card-2 .metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-card-2 .metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-card-2 .metric-bar {
    width: 70%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.hero-card-2 .metric-bar-fill {
    width: 78%;
    height: 100%;
    background: var(--cyan);
    border-radius: 3px;
}

.hero-floating-badge {
    position: absolute;
    top: 0;
    right: 15%;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 4;
    animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 36px; height: 36px;
    background: var(--cyan-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.badge-text { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }
.badge-sub { font-size: 0.7rem; color: var(--gray-400); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-tag::before, .section-tag::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--teal);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.08rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dark section headers */
.dark-section .section-tag { color: var(--cyan); }
.dark-section .section-tag::before, .dark-section .section-tag::after { background: var(--cyan); }
.dark-section .section-header h2 { color: var(--white); }
.dark-section .section-header p { color: var(--gray-400); }

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px; height: 56px;
    background: var(--cyan-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cyan), var(--teal-light));
    color: var(--deep);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--deep);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover { color: var(--cyan); gap: 10px; }

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 120px 0;
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 80% 20%, rgba(13,115,119,0.15), transparent),
        radial-gradient(circle 400px at 10% 80%, rgba(12,240,219,0.05), transparent);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.portfolio-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(12,240,219,0.2);
    box-shadow: var(--shadow-glow);
}

.portfolio-card:first-child { grid-row: span 2; }

.portfolio-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--deep-blue), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card:first-child .portfolio-thumb { aspect-ratio: auto; height: 100%; min-height: 300px; }

.portfolio-thumb svg { color: var(--gray-400); opacity: 0.3; }

.portfolio-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,14,26,0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-tag {
    display: inline-block;
    background: var(--cyan-glow);
    border: 1px solid rgba(12,240,219,0.2);
    color: var(--cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.portfolio-thumb-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-thumb-overlay p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== ABOUT / WHY US SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3.5;
    background: linear-gradient(135deg, var(--deep-blue), var(--teal));
    position: relative;
}

.about-image-main .img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.about-floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-floating-stat .stat-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    display: block;
    line-height: 1;
}

.about-floating-stat .stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::before { display: none; }

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--deep);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--deep);
}

.about-feature .feat-check {
    width: 22px; height: 22px;
    background: var(--cyan-glow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--teal-light), var(--cyan));
    opacity: 0.2;
}

.process-step { text-align: center; position: relative; }

.step-number {
    width: 56px; height: 56px;
    background: var(--cyan-glow);
    border: 2px solid rgba(12,240,219,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--teal);
    position: relative;
    z-index: 1;
    background-color: var(--white);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--cyan), var(--teal-light));
    color: var(--deep);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--deep);
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--cyan);
    opacity: 0.15;
    position: absolute;
    top: 8px; right: 24px;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(12,240,219,0.2);
}

.testimonial-stars { margin-bottom: 16px; display: flex; gap: 2px; color: var(--cyan); }

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
}

.author-name { font-weight: 600; color: var(--deep); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--gray-400); }

.testimonial-featured {
    grid-column: span 2;
    background: var(--deep);
    border-color: var(--deep);
}

.testimonial-featured::before { opacity: 0.08; }
.testimonial-featured .testimonial-text { color: var(--gray-200); font-size: 1.1rem; }
.testimonial-featured .author-avatar { background: linear-gradient(135deg, var(--cyan), var(--teal-light)); color: var(--deep); }
.testimonial-featured .author-name { color: var(--white); }
.testimonial-featured .author-role { color: var(--gray-400); }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 400px at 50% 50%, rgba(12,240,219,0.08), transparent);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.08rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.contact-info {
    background: var(--deep);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 300px at 80% 90%, rgba(12,240,219,0.08), transparent);
    pointer-events: none;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.6;
    position: relative;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.detail-icon {
    width: 44px; height: 44px;
    background: var(--cyan-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.contact-detail strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2px;
    font-family: var(--font-display);
}

.contact-detail a, .contact-detail span {
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
    display: block;
}

.contact-detail a:hover { color: var(--cyan); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--deep);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-form > p { color: var(--gray-500); margin-bottom: 28px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: span 2; }

.form-group label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--deep);
    text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    background: var(--off-white);
    color: var(--gray-700);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--cyan-glow);
}

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

.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--deep);
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 50% 100%, rgba(12,240,219,0.06), transparent),
        radial-gradient(circle 400px at 80% 30%, rgba(13,115,119,0.1), transparent);
    pointer-events: none;
}

.page-hero .breadcrumb {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    position: relative;
}

.page-hero .breadcrumb a { color: var(--gray-400); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep);
    padding: 4px 0;
    transition: var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-toggle {
    width: 28px; height: 28px;
    background: var(--cyan-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }
.faq-item.open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }

/* ===== FOOTER ===== */
.main-footer {
    background: var(--deep);
    padding: 72px 0 0;
    color: var(--gray-400);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--teal-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    color: var(--gray-400);
    max-width: 280px;
}

.footer-grid h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links a, .footer-services a, .footer-contact a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-400);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover, .footer-services a:hover, .footer-contact a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--cyan-glow);
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: var(--gray-400);
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-card:first-child { grid-row: span 1; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0; right: 0;
        background: rgba(8,14,26,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 16px; }
    .nav-cta { margin-left: 0 !important; text-align: center; }

    .hero { min-height: auto; padding: 120px 24px 60px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-featured { grid-column: span 1; }
    .about-features { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }

    .cursor-glow { display: none; }
}
