@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CYBERTECH DESIGN SYSTEM TOKENS --- */
:root {
    --bg-dark: #070a13;       /* Deep Cyber Navy */
    --bg-surface: #0e1220;    /* Dark Charcoal Navy */
    --bg-card: #141b2f;       /* Dark Navy Card */
    --border-cyan: rgba(0, 242, 254, 0.15);
    --border-glow: rgba(0, 242, 254, 0.4);
    --color-cyan: #00f2fe;     /* Neon Cyan */
    --color-purple: #4facfe;   /* Electric Blue-Purple */
    --color-pink: #f857a6;     /* Neon Pink (for badges/alerts) */
    --text-primary: #f0f4f8;   /* Off-White */
    --text-secondary: #8a99ad; /* Muted Slate */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    
    --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.15);
    --shadow-glow-hover: 0 0 30px rgba(0, 242, 254, 0.35);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-quick);
}

button, input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* --- BADGES & TAGS --- */
.badge-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.header.sticky {
    position: fixed;
    background-color: rgba(7, 10, 19, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.4s ease-out;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1.5px;
}

.logo span {
    color: var(--color-cyan);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: white;
    transition: var(--transition-quick);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-top: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 50%, #8a99ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-box p {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- HERO VISUAL (CYBER EYE) --- */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-mesh {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-cyan);
    box-shadow: var(--shadow-glow);
}

.cyber-mesh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
}

.floating-tag {
    position: absolute;
    background: rgba(14, 18, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-cyan);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    box-shadow: var(--shadow-glow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    z-index: 10;
}

.tag-top {
    top: 30px;
    left: -20px;
}

.tag-bottom {
    bottom: 40px;
    right: -20px;
}

/* --- TRUSTED MARQUEE --- */
.trusted-section {
    background-color: #04060b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-right: 50px;
    flex-shrink: 0;
}

.ticker-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    margin-right: 80px;
    text-transform: uppercase;
}

/* --- SERVICES (WHAT WE DO) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 1;
}

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

.card-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 2px;
    background-color: var(--color-cyan);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.learn-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-quick);
}

.service-card:hover .learn-more {
    color: var(--color-cyan);
}

.service-card:hover .learn-more svg {
    transform: translateX(4px);
}

/* --- SELECTED WORK (PORTFOLIO) --- */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.portfolio-header .section-header {
    margin: 0;
    text-align: left;
}

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

.portfolio-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow-hover);
}

.portfolio-img-wrapper {
    height: 240px;
    background-color: var(--bg-card);
    overflow: hidden;
    position: relative;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.06);
}

.portfolio-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(7, 10, 19, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 15px;
}

.portfolio-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.portfolio-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.portfolio-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-cyan);
}

.portfolio-metric span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- LARGE TEXT SCROLLER --- */
.giant-marquee {
    background-color: #04060b;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.giant-text-container {
    white-space: nowrap;
    animation: marquee 35s linear infinite;
}

.giant-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-right: 60px;
    display: inline-block;
}

/* --- PROCESS SECTION --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.process-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.process-visual {
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-visual svg {
    width: 80px;
    height: 80px;
    color: var(--color-cyan);
}

.process-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* --- ABOUT AGENCY GRID --- */
.about-agency-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}

.about-agency-left h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-agency-left p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-agency-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card-mini {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
}

.testimonial-card-mini p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: white;
}

.client-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- MAIN TESTIMONIALS SLIDER --- */
.testimonials-section {
    background-color: #04060b;
}

.testimonial-slider-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.slider-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.slider-left p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.testimonial-box-main {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.main-testimonial-slide {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    opacity: 0;
    transform: translateX(60px);
    transition: var(--transition-smooth);
}

.main-testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-cyan);
}

.author-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

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

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-dot.active {
    background-color: var(--color-cyan);
    width: 20px;
    border-radius: 4px;
}

/* --- CONTACT / INQUIRY SECTION --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
}

.contact-inquiry-left h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-inquiry-left p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.contact-item-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-cyan);
}

.contact-item-link:hover {
    color: var(--color-cyan);
}

.inquiry-form-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.form-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-cyan);
}

/* --- RESULTS (METRICS DASHBOARD) --- */
.results-section {
    background-color: #04060b;
}

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

.result-metric-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.result-metric-card h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.result-metric-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.result-value-big {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-cyan);
    margin-top: auto;
    margin-bottom: 12px;
}

/* MOCK CHART BOXES */
.mock-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.chart-bar {
    flex-grow: 1;
    background: linear-gradient(to top, var(--color-purple), var(--color-cyan));
    border-radius: 4px 4px 0 0;
    height: 0%; /* Animated via JS */
    transition: height 1.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.mock-circle-chart {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-circle-svg {
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
}

.mock-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.mock-circle-fill {
    fill: none;
    stroke: var(--color-cyan);
    stroke-width: 8;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2; /* Animated via JS */
    transition: stroke-dashoffset 1.5s ease-out;
}

.mock-line-chart {
    height: 100px;
    position: relative;
    overflow: hidden;
}

.mock-line-svg {
    width: 100%;
    height: 100%;
}

.mock-line-path {
    fill: none;
    stroke: var(--color-purple);
    stroke-width: 3;
    stroke-dasharray: 400;
    stroke-dashoffset: 400; /* Animated via JS */
    transition: stroke-dashoffset 1.5s ease-out;
}

/* --- INSIGHTS / BLOG --- */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-header .section-header {
    margin: 0;
    text-align: left;
}

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

.blog-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.blog-img-wrapper {
    height: 200px;
    background-color: var(--bg-card);
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 30px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
}

.read-article {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-cyan);
}

/* --- FAQ SECTION --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-quick);
}

.accordion-header:hover {
    color: var(--color-cyan);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-cyan);
}

.accordion-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.accordion-item.active .accordion-body {
    padding-bottom: 24px;
}

.faq-visual-wrapper {
    height: 100%;
    min-height: 350px;
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-cyan);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.faq-visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BOTTOM CTA --- */
.bottom-cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #04060b;
}

.cta-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.bottom-cta-section .container {
    position: relative;
    z-index: 2;
}

.bottom-cta-section h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.bottom-cta-section p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.footer {
    background-color: #020306;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

.footer-newsletter-form {
    display: flex;
    background-color: var(--bg-surface);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0 16px;
    color: white;
    font-size: 0.9rem;
}

.footer-newsletter-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-cyan);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* --- SUB PAGES --- */
.page-banner {
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 10, 19, 0.95) 0%, rgba(7, 10, 19, 0.75) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--color-cyan);
}

.breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.15);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 242, 254, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-agency-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonial-slider-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.15rem;
    }
    .navbar .btn-primary {
        display: none; /* Hide start project on top mobile bar */
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
