/* ========================================
   FOTO-WEB-CRAFT — Premium Design System
   ======================================== */

/* --- DESIGN TOKENS --- */
:root {
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --bg-light: #F4F5F7;
    --accent: #1E1E6E;
    --accent-dark: #141452;
    --accent-light: #EEEEF8;
    --accent-glow: rgba(30, 30, 110, 0.2);
    --dark: #1A1A2E;
    --text: #2D2D2D;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F0F1F3;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.45);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10), 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-accent: 0 8px 30px rgba(30, 30, 110, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

fieldset {
    border: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

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

.container-narrow {
    max-width: 800px;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
}

.accent {
    color: var(--accent);
}

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

/* --- SECTION --- */
.section {
    padding: clamp(60px, 8vw, 120px) 0;
    position: relative;
}

.section-light {
    background: var(--off-white);
}

.section-accent {
    background: linear-gradient(135deg, #0F0F3D 0%, #1A1A5E 50%, #2D1B69 100%);
    color: var(--white);
}

.section-accent h2,
.section-accent h3,
.section-accent h4 {
    color: var(--white);
}

.section-accent .section-badge {
    background: rgba(140, 120, 255, 0.2);
    color: #B8ADFF;
}

.section-accent .accent {
    color: #B8ADFF;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.logo-img-footer {
    height: 56px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

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

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-full {
    width: 100%;
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 20px 0 28px;
    line-height: 1.75;
}

.hero-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.pill svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero-img-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.hero-img-decoration {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: 0;
    opacity: 0.3;
}

/* ========== TARGET CARDS ========== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    counter-reset: target-counter;
}

.target-card {
    background: var(--white);
    padding: 44px 32px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    counter-increment: target-counter;
}

.target-card::before {
    content: counter(target-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.06;
    line-height: 1;
    transition: var(--transition);
}

.target-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: var(--transition);
}

.target-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.target-card:hover::before {
    opacity: 0.12;
}

.target-card:hover::after {
    opacity: 1;
}

.target-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(30, 30, 110, 0.2);
    transition: var(--transition);
}

.target-card:hover .target-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(30, 30, 110, 0.3);
}

.target-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.target-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto) 40px repeat(5, auto);
    column-gap: 20px;
    row-gap: 0;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px 32px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(n+3) {
    grid-row: 7 / span 5;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: var(--transition);
}

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

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

/* Featured / most popular card */
.service-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-light);
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 40%);
    transform: scale(1.03);
    z-index: 2;
}

.service-card.featured::before {
    opacity: 1;
    height: 5px;
}

.service-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--accent);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(30, 30, 110, 0.3);
}

.service-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(30, 30, 110, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(30, 30, 110, 0.3);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card>p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.service-list h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.service-card .btn {
    align-self: end;
    text-align: center;
}

/* ========== USP ========== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Row 1: 3 items, each spanning 2 cols */
.usp-card:nth-child(1) {
    grid-column: 1 / 3;
}

.usp-card:nth-child(2) {
    grid-column: 3 / 5;
}

.usp-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Row 2: 2 items centered, offset 1 col */
.usp-card:nth-child(4) {
    grid-column: 2 / 4;
}

.usp-card:nth-child(5) {
    grid-column: 4 / 6;
}

.usp-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

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

.usp-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(30, 30, 110, 0.2);
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 30, 110, 0.3);
}

.usp-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========== PROCESS — Zigzag Timeline ========== */
.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 56px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Vertical connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-light), var(--accent), var(--accent-light));
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

/* Numbered circle in center */
.step-number {
    grid-column: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(30, 30, 110, 0.3), 0 0 0 6px var(--white);
    z-index: 2;
    transition: var(--transition);
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    opacity: 1;
    line-height: 1;
}

.process-step:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(30, 30, 110, 0.4), 0 0 0 6px var(--white);
}

/* Card content */
.step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.step-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transform: translateY(-50%) rotate(45deg);
    z-index: -1;
}

.process-step:hover .step-content {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

/* Odd steps: card on left, circle center */
.process-step:nth-child(odd) .step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    margin-right: 20px;
}

.process-step:nth-child(odd) .step-content::after {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

.process-step:nth-child(odd) .step-number {
    grid-column: 2;
    grid-row: 1;
}

/* Empty spacer for the other side */
.process-step:nth-child(odd)::after {
    content: '';
    grid-column: 3;
    grid-row: 1;
}

/* Even steps: card on right, circle center */
.process-step:nth-child(even) .step-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    margin-left: 20px;
}

.process-step:nth-child(even) .step-content::after {
    left: -11px;
    border-right: none;
    border-top: none;
}

.process-step:nth-child(even) .step-number {
    grid-column: 2;
    grid-row: 1;
}

.process-step:nth-child(even)::before {
    content: '';
    grid-column: 1;
    grid-row: 1;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ========== PORTFOLIO ========== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.portfolio-info {
    padding: 22px 20px;
}

.portfolio-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.portfolio-info h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.portfolio-info p {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-img-decoration {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: 0;
    opacity: 0.2;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.fact {
    background: var(--off-white);
    padding: 20px 18px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.fact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.fact-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #F59E0B;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

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

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.test-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.test-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ========== FAQ ========== */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.section-accent .section-title.text-left {
    text-align: left;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-size: 1.02rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-item svg {
    color: #B8ADFF;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-link:hover {
    background: #B8ADFF;
    border-color: #B8ADFF;
    color: var(--dark);
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

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

.form-group {
    margin-bottom: 4px;
}

.form-group label,
.form-group legend {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.cb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
}

.cb input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-note {
    font-size: 0.82rem;
    color: var(--text-lighter);
    text-align: center;
    margin-top: 12px;
}

/* CTA Card (Calendly) */
.contact-cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 50%;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-cta-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
}

.contact-cta-card>p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 440px;
}

.contact-cta-card .form-note {
    color: var(--text-lighter);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 48px 20px;
    color: var(--accent);
}

.form-success p {
    color: var(--text);
}

.form-success.show {
    display: flex;
}

.contact-form.submitted>*:not(.form-success) {
    display: none;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #B8ADFF;
}

.footer-cta h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-cta p {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-socials a:hover {
    color: #B8ADFF;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-pills {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper {
        max-width: 360px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Services stay 2x2 on tablets, just ensure spacing if needed */
    .services-grid {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-8px);
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-card:nth-child(1),
    .usp-card:nth-child(2),
    .usp-card:nth-child(3),
    .usp-card:nth-child(4),
    .usp-card:nth-child(5) {
        grid-column: auto;
    }

    .usp-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .process-timeline {
        max-width: 100%;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        margin-bottom: 12px;
    }

    .step-number {
        grid-column: 1 !important;
        grid-row: 1;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-column: 2 !important;
        grid-row: 1;
        text-align: left;
        margin-left: 16px;
        margin-right: 0;
    }

    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::before {
        display: none;
    }

    .step-content::after {
        display: none !important;
    }

    .process-timeline::before {
        left: 26px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-accent .section-title.text-left {
        text-align: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 80px 32px 32px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }

    .logo-img {
        height: 60px;
    }

    .nav-links.open {
        right: 0;
    }

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

    .hero {
        min-height: auto;
        padding: 110px 0 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        row-gap: 28px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card {
        grid-row: auto !important;
        display: flex;
        flex-direction: column;
    }

    .process-timeline {
        max-width: 100%;
    }

    .process-timeline::before {
        left: 26px;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        margin-bottom: 12px;
    }

    .step-number {
        grid-column: 1 !important;
        grid-row: 1;
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-column: 2 !important;
        grid-row: 1;
        text-align: left;
        margin-left: 16px;
        margin-right: 0;
    }

    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::before {
        display: none;
    }

    .step-content::after {
        display: none !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .usp-card:nth-child(5) {
        max-width: 100%;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-img-wrapper {
        max-width: 280px;
    }

    .hero-img-decoration {
        bottom: -10px;
        right: -10px;
    }

    .about-img-decoration {
        top: -10px;
        left: -10px;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .usp-card:nth-child(1),
    .usp-card:nth-child(2),
    .usp-card:nth-child(3),
    .usp-card:nth-child(4),
    .usp-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========== PORTFOLIO — HIDDEN CARDS / SHOW MORE ========== */
.portfolio-card.hidden-card {
    display: none;
}

.portfolio-card.revealing {
    display: block;
    animation: cardReveal 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portfolio-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.portfolio-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.portfolio-more-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-more-btn:hover svg {
    transform: translateY(3px);
}

.portfolio-more-btn.hidden {
    display: none;
}

/* ========== PORTFOLIO — CARD CURSOR ========== */
.portfolio-card {
    cursor: pointer;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 6, 18, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox.active .lightbox-inner {
    transform: scale(1) translateY(0);
}

.lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 90px);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 0;
}

/* Click zones — left / right half of image */
.lightbox-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.lightbox-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
    transition: background 0.2s ease;
}

.lightbox-zone-prev {
    left: 0;
    cursor: w-resize;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.lightbox-zone-next {
    right: 0;
    cursor: e-resize;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lightbox-zone-prev:hover {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), transparent);
}

.lightbox-zone-next:hover {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.08), transparent);
}

/* Hide zones when only 1 image */
.lightbox-zone.hidden {
    display: none;
}

.lightbox-caption {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    width: 100%;
    max-width: min(90vw, 1100px);
    overflow: hidden;
}

.lightbox-tag {
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

/* Lightbox buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 1.7rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* Hide prev/next arrows when only one item */
.lightbox-prev.hidden,
.lightbox-next.hidden {
    display: none;
}

@media (max-width: 768px) {
    .lightbox-inner {
        max-width: 95vw;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .lightbox-title {
        font-size: 0.88rem;
        white-space: normal;
    }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(30, 30, 110, 0.35);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 24px rgba(30, 30, 110, 0.45);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }
}