/* ==========================================================================
   Healoza Web — Design System
   ========================================================================== */

:root {
    --primary: #0057FF;
    --secondary: #0A66FF;
    --navy: #071B4D;
    --dark-text: #0B1220;
    --body-text: #5B6475;
    --background: #F5F8FF;
    --white: #FFFFFF;
    --border: #E5EAF5;
    --light-accent: #EEF5FF;

    --container-max: 1280px;
    --content-width: 1200px;
    --header-height: 76px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 3px rgba(7, 27, 77, 0.06);
    --shadow-md: 0 4px 20px rgba(7, 27, 77, 0.08);
    --shadow-lg: 0 12px 40px rgba(7, 27, 77, 0.12);
    --shadow-header: 0 4px 24px rgba(7, 27, 77, 0.08);

    --transition: 0.3s ease;
    --font: 'Inter', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

@media (max-width: 991px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.15);
}

.btn-hero {
    height: 54px;
    padding: 0 28px;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-header);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: var(--body-text);
    line-height: 1.2;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--primary);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.cart-btn:hover {
    background: var(--light-accent);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #FF3B30;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-header {
    height: 42px;
    padding: 0 22px;
    font-size: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-toggle:hover {
    background: var(--light-accent);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-menu.open {
    max-height: 520px;
    opacity: 1;
}

.mobile-nav-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
    background: var(--light-accent);
    color: var(--primary);
}

.mobile-nav-link.active {
    background: var(--light-accent);
    color: var(--primary);
}

.mobile-login {
    color: var(--body-text);
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 20px;
}

.btn-mobile-cta {
    width: 100%;
    height: 50px;
    margin-top: 8px;
}

@media (max-width: 1199px) {
    .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 767px) {
    .logo-subtitle {
        display: none;
    }

    .logo-title {
        font-size: 15px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 50%, var(--light-accent) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.hero-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 87, 255, 0.12);
    top: -100px;
    right: -100px;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(10, 102, 255, 0.08);
    bottom: -80px;
    left: -80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: var(--content-width);
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body-text);
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon--blue {
    background: rgba(0, 87, 255, 0.1);
    color: var(--primary);
}

.stat-icon--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
}

.stat-icon--green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.stat-icon--orange {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 0.85;
}

/* Laptop Mockup */
.laptop-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    z-index: 2;
}

.laptop-screen {
    background: #1a1a2e;
    border-radius: 12px 12px 0 0;
    border: 3px solid #2d2d44;
    border-bottom: none;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #16162a;
    border-bottom: 1px solid #2d2d44;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot--red { background: #FF5F57; }
.browser-dot--yellow { background: #FFBD2E; }
.browser-dot--green { background: #28CA41; }

.browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.browser-content {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0d1b3e 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 280px;
}

.hero-dashboard-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    min-height: 220px;
    text-align: center;
}

.fallback-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.laptop-base {
    height: 14px;
    background: linear-gradient(180deg, #c8c8d0 0%, #a0a0aa 100%);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18%;
    height: 4px;
    background: #888;
    border-radius: 0 0 4px 4px;
}

/* Phone & Tablet */
.phone-mockup {
    position: absolute;
    bottom: 8%;
    left: -2%;
    width: 16%;
    aspect-ratio: 9 / 18;
    background: #1a1a2e;
    border-radius: 12px;
    border: 2px solid #2d2d44;
    box-shadow: var(--shadow-md);
    z-index: 3;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f23, #1a1a3e);
}

.tablet-mockup {
    position: absolute;
    top: 18%;
    right: -4%;
    width: 22%;
    aspect-ratio: 3 / 4;
    background: #1a1a2e;
    border-radius: 10px;
    border: 2px solid #2d2d44;
    box-shadow: var(--shadow-md);
    z-index: 1;
    overflow: hidden;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d1b3e, #1a1a3e);
}

/* Product Box */
.product-box-wrap {
    position: absolute;
    bottom: 12%;
    right: 2%;
    z-index: 4;
    width: 22%;
}

.product-box-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(7, 27, 77, 0.2));
}

.product-box-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, #0057FF, #0A66FF);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-height: 100px;
}

.product-box-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.product-box-type {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-text);
    z-index: 5;
    animation: gentleFloat 4s ease-in-out infinite;
}

.float-badge--php {
    top: 6%;
    left: 8%;
    animation-delay: 0s;
}

.float-badge--php .badge-icon {
    color: #777BB4;
}

.float-badge--wp {
    top: 2%;
    right: 18%;
    animation-delay: 0.8s;
}

.float-badge--wp .badge-icon {
    color: #21759B;
}

.float-badge--mysql {
    bottom: 28%;
    left: 0;
    animation-delay: 1.6s;
}

.float-badge--mysql .badge-icon {
    color: #00758F;
}

.float-badge--code {
    top: 38%;
    right: -2%;
    color: #7C3AED;
    animation-delay: 2.4s;
}

.float-badge--ebooks {
    bottom: 42%;
    right: 8%;
    color: var(--primary);
    animation-delay: 3.2s;
}

/* Floating Glass Cards */
.float-card {
    position: absolute;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 5;
    animation: gentleFloat 5s ease-in-out infinite;
}

.float-card strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.float-card span {
    font-size: 11px;
    color: var(--body-text);
}

.float-card--1 {
    top: 14%;
    left: -6%;
    animation-delay: 0.5s;
}

.float-card--2 {
    bottom: 18%;
    left: -8%;
    animation-delay: 1.5s;
}

.float-card--3 {
    top: 22%;
    right: -10%;
    animation-delay: 2.5s;
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-hero-visual].visible {
    opacity: 1;
    transform: scale(1);
}

[data-hero-visual] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero {
        min-height: 700px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-visual-inner {
        max-width: 460px;
    }

    .float-card--1,
    .float-card--3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 40px;
        padding-bottom: 48px;
    }

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

    .hero-visual {
        order: 2;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-hero {
        width: 100%;
    }

    .hero-trust {
        gap: 12px 16px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-visual-inner {
        max-width: 100%;
    }

    .float-card,
    .phone-mockup,
    .tablet-mockup {
        display: none;
    }

    .float-badge--code,
    .float-badge--ebooks {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll,
    .stat-item {
        opacity: 1;
        transform: none;
    }

    [data-hero-visual] {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.75);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
}

.section-desc--light {
    color: rgba(255, 255, 255, 0.72);
}

.section-header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: var(--content-width);
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
    flex: 1;
}

@media (max-width: 1199px) {
    .services-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-header--center {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .service-card--wide {
        grid-column: 1 / -1;
    }

    .service-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }

    .service-card-icon img {
        width: 56px;
        height: 56px;
    }

    .service-card-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .service-card-desc {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.products-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.products-section-bg {
    position: absolute;
    inset: 16px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #001B5E 100%);
    border-radius: 28px;
    overflow: hidden;
}

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

.products-glow--1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 87, 255, 0.2);
    top: -120px;
    right: -80px;
}

.products-glow--2 {
    width: 300px;
    height: 300px;
    background: rgba(10, 102, 255, 0.15);
    bottom: -80px;
    left: -60px;
}

.products-section-inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-width);
}

.products-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.products-section-intro {
    max-width: 560px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-md);
    background: transparent;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Carousel */
.products-carousel-wrap {
    position: relative;
    padding: 0 56px;
}

.products-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 16px;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-arrow {
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-arrow--side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-arrow--side:hover {
    background: var(--light-accent);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.carousel-arrow--prev.carousel-arrow--side {
    left: 0;
}

.carousel-arrow--next.carousel-arrow--side {
    right: 0;
}

.carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0 4px;
}

.carousel-arrow--mobile {
    position: static;
    transform: none;
    width: 52px;
    height: 52px;
}

.carousel-arrow--mobile:hover {
    background: var(--light-accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.carousel-swipe-hint {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    min-width: 0;
}

/* Product Cards */
.product-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.product-image img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #ffffff;
    padding: 12px;
    display: block;
}

.product-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    letter-spacing: 0.02em;
}

.product-card-body {
    padding: 20px 20px 24px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-buy:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.35);
}

@media (max-width: 1199px) {
    .products-section {
        padding: 80px 0;
    }

    .product-card {
        flex: 0 0 280px;
    }

    .product-image img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .products-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-view-all {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 64px 0;
    }

    .products-section-bg {
        inset: 8px 12px;
        border-radius: 20px;
    }

    .products-section-header {
        margin-bottom: 32px;
    }

    .products-carousel-wrap {
        padding: 0;
    }

    .carousel-arrow--side {
        display: none;
    }

    .carousel-controls {
        display: flex;
    }

    .product-card {
        flex: 0 0 82vw;
    }

    .product-image img {
        height: 280px;
    }
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */

.why-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--background);
}

.why-section-inner {
    max-width: var(--content-width);
}

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

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 20px;
    min-height: 190px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(7, 27, 77, 0.14);
        border-color: rgba(0, 87, 255, 0.35);
    }
}

.why-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.why-card-icon svg {
    width: 35px;
    height: 35px;
}

.why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body-text);
    flex: 1;
}

@media (max-width: 1199px) {
    .why-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .why-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-card {
        padding: 20px 14px;
        min-height: auto;
    }

    .why-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .why-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .why-card-title {
        font-size: 14px;
    }

    .why-card-desc {
        font-size: 12px;
    }

    .why-card--last {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.portfolio-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--white);
}

.portfolio-section-inner {
    max-width: var(--container-max);
}

.portfolio-swipe-hint {
    display: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-controls {
    display: none;
}

.portfolio-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.portfolio-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.portfolio-arrow:hover {
    background: var(--light-accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.portfolio-arrow:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.portfolio-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-sm);
}

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

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 27, 77, 0.09);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(7, 27, 77, 0.14);
    }
}

.portfolio-image-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #F8FAFF;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-image-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
}

.portfolio-image-btn img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #F8FAFF;
    padding: 8px;
    display: block;
    transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .portfolio-card:hover .portfolio-image-btn img {
        transform: scale(1.02);
    }
}

.portfolio-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    padding: 12px 12px 14px;
    text-align: center;
    line-height: 1.35;
}

@media (max-width: 1199px) {
    .portfolio-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

    .portfolio-image-btn img {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .portfolio-section-inner {
        overflow: hidden;
    }

    .portfolio-swipe-hint {
        display: block;
        margin-bottom: 16px;
    }

    .portfolio-swipe-hint.is-hidden {
        opacity: 0;
        visibility: hidden;
        margin-bottom: 0;
        height: 0;
        overflow: hidden;
    }

    .portfolio-controls {
        display: block;
        margin-top: 20px;
    }

    .portfolio-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .portfolio-card {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }

    .portfolio-image-btn img {
        height: 220px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 77, 0.92);
    cursor: pointer;
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    background: var(--light-accent);
    transform: scale(1.05);
}

.lightbox-close:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .lightbox-close {
        top: -52px;
        right: 50%;
        transform: translateX(50%);
    }

    .lightbox-close:hover {
        transform: translateX(50%) scale(1.05);
    }
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.newsletter-section-bg {
    position: absolute;
    inset: 16px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #001B5E 100%);
    border-radius: 24px;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: newsletterGlow 6s ease-in-out infinite alternate;
}

.newsletter-glow--1 {
    width: 360px;
    height: 360px;
    background: rgba(0, 87, 255, 0.22);
    top: -100px;
    left: -60px;
}

.newsletter-glow--2 {
    width: 280px;
    height: 280px;
    background: rgba(10, 102, 255, 0.15);
    bottom: -80px;
    right: -40px;
    animation-delay: 2s;
}

@keyframes newsletterGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 52px 44px;
}

.newsletter-icon {
    position: absolute;
    top: 24px;
    left: 40px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--white);
    animation: gentleFloat 4s ease-in-out infinite;
}

.newsletter-content {
    padding-left: 72px;
}

.newsletter-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
}

.newsletter-form-row {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    height: 52px;
    padding: 0 18px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--dark-text);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #9AA3B2;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.2);
}

.newsletter-input:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.2);
}

.newsletter-submit {
    height: 52px;
    padding: 0 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.35);
}

.newsletter-submit:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.newsletter-message {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    min-height: 20px;
}

.newsletter-message.success {
    color: #6EE7B7;
}

.newsletter-message.error {
    color: #FCA5A5;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991px) {
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 28px;
    }

    .newsletter-icon {
        position: static;
        margin-bottom: 8px;
    }

    .newsletter-content {
        padding-left: 0;
    }

    .newsletter-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 80px 0;
    }

    .newsletter-section-bg {
        inset: 8px 12px;
        border-radius: 20px;
    }

    .newsletter-inner {
        padding: 40px 24px;
        gap: 24px;
    }

    .newsletter-form {
        margin-top: 0;
    }

    .newsletter-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-input,
    .newsletter-submit {
        width: 100%;
        height: 60px;
        border-radius: 14px;
        font-size: 16px;
    }

    .newsletter-input {
        padding: 0 20px;
    }

    .newsletter-submit {
        font-weight: 600;
    }
}

@media (prefers-reduced-motion: reduce) {
    .newsletter-glow {
        animation: none;
    }

    .newsletter-icon {
        animation: none;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 80px 0;
    background: var(--background);
}

.cta-inner {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 56px;
    box-shadow: 0 12px 40px rgba(7, 27, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(0, 87, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.cta-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    max-width: 540px;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
        gap: 28px;
    }

    .cta-buttons {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 64px 0;
    }

    .cta-inner {
        padding: 32px 24px;
        text-align: center;
        align-items: center;
    }

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

    .cta-desc {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn-hero {
        width: 100%;
    }
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #071B4D 0%, #001A4D 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.footer-glow--1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 87, 255, 0.15);
    top: -120px;
    right: -80px;
}

.footer-glow--2 {
    width: 300px;
    height: 300px;
    background: rgba(10, 102, 255, 0.1);
    bottom: -60px;
    left: -60px;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.site-footer.is-visible .footer-main {
    opacity: 1;
    transform: translateY(0);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px 32px;
    max-width: var(--content-width);
}

.footer-col--brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-trust {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
}

.footer-trust-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-trust-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.footer-payment-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.payment-badge svg {
    height: 32px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0 30px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: var(--content-width);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

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

.footer-bottom-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 64px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-main {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}

/* ==========================================================================
   Inner Pages
   ========================================================================== */

.page-main {
    background: var(--background);
}

.page-hero {
    padding: 60px 0 48px;
    background: linear-gradient(180deg, var(--white) 0%, var(--background) 100%);
    border-bottom: 1px solid var(--border);
}

.page-container {
    max-width: var(--content-width);
}

.page-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
    max-width: 720px;
}

.page-section {
    padding: 64px 0;
}

.page-section--alt {
    background: var(--white);
}

.page-grid {
    display: grid;
    gap: 24px;
}

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

.page-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.page-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.page-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
}

.page-card h2,
.page-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.page-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

.page-card ul {
    margin-top: 12px;
    padding-left: 18px;
}

.page-card li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
    margin-bottom: 8px;
    list-style: disc;
}

.content-block {
    max-width: 800px;
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block p,
.content-block li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 14px;
}

.content-block ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.content-block li {
    list-style: disc;
    margin-bottom: 8px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--dark-text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
}

.form-message {
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
}

.form-message.success {
    color: #059669;
}

.form-message.error {
    color: #DC2626;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text);
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.contact-info-item a {
    color: var(--primary);
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

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

.page-gallery-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
}

.page-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #F8FAFF;
    padding: 10px;
}

.page-gallery-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 16px;
    text-align: center;
}

.pricing-note {
    display: inline-block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.page-actions {
    margin-top: 32px;
    text-align: center;
}

.content-block a {
    color: var(--primary);
    font-weight: 500;
}

.content-block a:hover {
    color: var(--secondary);
}

.faq-item a {
    color: var(--primary);
    font-weight: 500;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 50%, var(--light-accent) 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--content-width);
}

.about-hero-content .hero-badge {
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.about-hero-subtitle {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 28px;
    max-width: 520px;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-hero-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-story-content {
    margin: 0 auto;
    text-align: center;
}

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

.about-split-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-founder-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.about-founder-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-split-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 14px;
}

.about-split-content p:last-child {
    margin-bottom: 0;
}

.about-image-wrap,
.about-split-media,
.about-image-hover-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #F8FAFF;
}

.about-founder-image,
.about-workspace-image {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-founder-image {
    height: 420px;
}

.about-workspace-image {
    height: 420px;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #F8FAFF;
}

@media (hover: hover) and (pointer: fine) {
    .about-image-hover-wrap img {
        transition: transform 0.35s ease;
    }

    .about-image-hover-wrap:hover img {
        transform: scale(1.03);
    }
}

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

.about-value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .about-value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(7, 27, 77, 0.1);
        border-color: rgba(0, 87, 255, 0.2);
    }
}

.about-value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

.about-mission-grid {
    align-items: stretch;
}

.page-card--lift {
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .page-card--lift:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(7, 27, 77, 0.1);
        border-color: rgba(0, 87, 255, 0.2);
    }
}

.about-why {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.about-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px 28px;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.about-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

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

.about-portfolio-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.06);
}

.about-portfolio-card .portfolio-image-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #F8FAFF;
    cursor: pointer;
}

.about-portfolio-card .portfolio-image-btn img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #F8FAFF;
    padding: 12px;
    display: block;
}

.about-portfolio-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 16px 18px;
    text-align: center;
}

.about-cta .cta-inner {
    background: var(--white);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-32px);
}

.animate-on-scroll.animate-from-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(32px);
}

.animate-on-scroll.animate-from-right.visible {
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .about-hero {
        padding: 64px 0 80px;
    }

    .about-why {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .about-hero-inner,
    .about-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero-content {
        order: 1;
    }

    .about-hero-media {
        order: 2;
    }

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

    .about-values-grid .about-value-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .about-founder-image,
    .about-workspace-image {
        height: 360px;
    }

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

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

    .about-portfolio-grid .about-portfolio-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .about-portfolio-card .portfolio-image-btn img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 48px 0 64px;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

    .about-hero-buttons .btn-hero {
        width: 100%;
    }

    .about-hero-image {
        min-height: 260px;
    }

    .about-founder-image,
    .about-workspace-image {
        height: 320px;
    }

    .about-founder-name {
        font-size: 18px;
    }

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

    .about-values-grid .about-value-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .about-why {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-why-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-step {
        padding: 20px 16px;
    }

    .about-step h3 {
        font-size: 15px;
    }

    .about-step p {
        font-size: 12px;
    }

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

    .about-portfolio-grid .about-portfolio-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .about-portfolio-card .portfolio-image-btn img {
        height: 200px;
    }
}

@media (max-width: 380px) {
    .about-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll.animate-from-left,
    .animate-on-scroll.animate-from-right {
        transform: none;
    }

    .about-image-hover-wrap:hover img {
        transform: none;
    }
}

/* ==========================================================================
   Services Page
   ========================================================================== */

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

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

.services-section--alt {
    background: var(--background);
}

.services-section--gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 45%, var(--light-accent) 100%);
}

/* Services hero — full background image */
.services-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.78) 38%,
            rgba(255, 255, 255, 0.35) 70%,
            rgba(255, 255, 255, 0.10) 100%
        ),
        url('../images/services/services-hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
}

.services-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.services-hero-content {
    max-width: 560px;
    width: 100%;
    padding-right: 24px;
}

.services-hero-content .hero-badge {
    margin-bottom: 20px;
}

.services-hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
    text-align: left;
}

.services-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 28px;
    max-width: 520px;
    text-align: left;
}

.services-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Service cards */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px 32px;
    box-shadow: 0 14px 40px rgba(7, 27, 77, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .services-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: 0 24px 56px rgba(0, 87, 255, 0.14);
    }
}

.services-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.services-card-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.services-card-icon--svg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 16px;
    color: var(--primary);
}

.services-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.services-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 20px;
}

.services-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-text);
    line-height: 1.4;
}

.services-card-features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* Why choose — premium horizontal layout */
.services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .services-why-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 44px rgba(0, 87, 255, 0.12);
        border-color: rgba(0, 87, 255, 0.25);
    }
}

.services-why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 14px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.25);
}

.services-why-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.services-why-content p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
}

/* Technologies */
.services-tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.services-tech-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .services-tech-badge:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: 0 12px 32px rgba(0, 87, 255, 0.12);
    }
}

/* Process timeline */
.services-timeline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    padding-top: 8px;
}

.services-timeline::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    border-radius: 2px;
    z-index: 0;
}

.services-timeline-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 18px 24px;
    box-shadow: 0 10px 30px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .services-timeline-step:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.14);
    }
}

.services-timeline-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.3);
}

.services-timeline-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.services-timeline-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body-text);
}

/* Service packages */
.services-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.services-package-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px 32px;
    box-shadow: 0 14px 40px rgba(7, 27, 77, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.services-package-card--featured {
    border-color: rgba(0, 87, 255, 0.35);
    box-shadow: 0 18px 48px rgba(0, 87, 255, 0.12);
}

@media (hover: hover) and (pointer: fine) {
    .services-package-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 24px 56px rgba(0, 87, 255, 0.14);
    }
}

.services-package-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.services-package-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 20px;
    flex: 1;
}

.services-package-card .services-card-features {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.services-package-card .pricing-note {
    margin-top: auto;
    margin-bottom: 20px;
}

.services-package-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
}

/* FAQ accordion */
.services-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-faq-item.is-open {
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 87, 255, 0.1);
}

.services-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.services-faq-trigger:hover,
.services-faq-trigger:focus-visible {
    color: var(--primary);
    outline: none;
}

.services-faq-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--primary);
}

.services-faq-icon {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    color: var(--primary);
}

.services-faq-item.is-open .services-faq-icon {
    transform: rotate(180deg);
}

.services-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.services-faq-item.is-open .services-faq-panel {
    max-height: 400px;
}

.services-faq-panel p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text);
}

.services-faq-panel a {
    color: var(--primary);
    font-weight: 600;
}

.services-faq-panel a:hover {
    color: var(--secondary);
}

/* Final CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 40%, var(--primary) 100%);
}

.services-cta-inner {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.services-cta-glow {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.services-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.services-cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.services-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto;
}

.services-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.services-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.services-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 1199px) {
    .services-section {
        padding: 80px 0;
    }

    .services-tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-timeline::before {
        left: 6%;
        right: 6%;
    }
}

@media (max-width: 991px) {
    .services-page-grid,
    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-timeline::before {
        display: none;
    }

    .services-packages-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .services-hero,
    .services-hero-inner {
        min-height: 620px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 64px 0;
    }

    .services-hero,
    .services-hero-inner {
        min-height: 680px;
    }

    .services-hero-inner {
        justify-content: center;
        align-items: center;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .services-hero-bg {
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.78) 45%,
                rgba(255, 255, 255, 0.65) 100%
            ),
            url('../images/services/services-hero.jpg');
        background-position: center center;
    }

    .services-hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .services-hero-title,
    .services-hero-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .services-hero-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .services-page-grid,
    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-card,
    .services-package-card {
        padding: 24px 20px;
    }

    .services-card-icon,
    .services-card-icon img {
        width: 56px;
        height: 56px;
    }

    .services-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .services-tech-badge {
        min-height: 48px;
        font-size: 13px;
        padding: 12px 16px;
    }

    .services-timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 20px;
    }

    .services-timeline::before {
        display: block;
        top: 0;
        bottom: 0;
        left: 45px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .services-timeline-step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 20px;
        margin-left: 36px;
        padding: 24px 20px;
    }

    .services-timeline-num {
        margin-bottom: 12px;
    }

    .services-cta {
        padding: 64px 0;
    }

    .services-cta-inner {
        padding: 48px 24px;
    }

    .services-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .services-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .services-faq-trigger {
        padding: 18px 20px;
        font-size: 15px;
    }

    .services-faq-panel p {
        padding: 0 20px 18px;
    }
}

@media (max-width: 380px) {
    .services-page-grid,
    .services-why-grid,
    .services-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-card,
    .services-why-item,
    .services-tech-badge,
    .services-timeline-step,
    .services-package-card,
    .services-faq-panel,
    .services-faq-icon {
        transition: none;
    }

    .services-faq-item.is-open .services-faq-panel {
        max-height: none;
    }
}

@media (max-width: 991px) {
    .page-grid--2,
    .page-grid--3,
    .page-grid--4,
    .page-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767px) {
    .page-hero {
        padding: 48px 0 36px;
        text-align: center;
    }

    .page-intro {
        margin: 0 auto;
    }

    .page-section {
        padding: 48px 0;
    }

    .page-grid--2,
    .page-grid--3,
    .page-grid--4,
    .page-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Digital Products Page
   ========================================================================== */

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

.dp-section--soft {
    background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
}

.dp-section-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.dp-section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.dp-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.dp-section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
}

/* Hero */
.dp-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/products/digital-products-hero.webp') center/cover no-repeat;
}

.dp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(7, 27, 77, 0.55);
}

.dp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.dp-hero-glow--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -60px;
    background: rgba(0, 87, 255, 0.35);
    animation: dpGlowFloat 8s ease-in-out infinite;
}

.dp-hero-glow--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: 10%;
    background: rgba(10, 102, 255, 0.28);
    animation: dpGlowFloat 10s ease-in-out infinite reverse;
}

@keyframes dpGlowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -16px); }
}

.dp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.dp-hero-content {
    max-width: 620px;
}

.dp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}

.dp-hero-title {
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.dp-hero-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    max-width: 560px;
}

.dp-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dp-hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.dp-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* Featured */
.dp-featured-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.dp-showcase-frame {
    position: relative;
}

.dp-showcase-glass {
    padding: 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(7, 27, 77, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .dp-showcase-glass:hover {
        transform: translateY(-6px);
        box-shadow: 0 32px 72px rgba(0, 87, 255, 0.15);
    }
}

.dp-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.dp-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(7, 27, 77, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .dp-highlight-item:hover {
        transform: translateX(8px);
        border-color: rgba(0, 87, 255, 0.35);
        box-shadow: 0 14px 36px rgba(0, 87, 255, 0.1);
    }
}

.dp-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 12px;
    color: var(--primary);
}

.dp-highlight-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.dp-highlight-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body-text);
}

/* Categories */
.dp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dp-category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .dp-category-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.14);
    }
}

.dp-category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-accent) 0%, rgba(0, 87, 255, 0.08) 100%);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 18px;
}

.dp-category-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.dp-category-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
}

/* Collection */
.dp-collection-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.dp-collection-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(7, 27, 77, 0.12);
    border: 1px solid var(--border);
}

.dp-collection-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dp-collection-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 28px;
}

.dp-checklist {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.dp-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.dp-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* Why buy */
.dp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dp-why-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 24px 32px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .dp-why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12);
    }
}

.dp-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 28px rgba(0, 87, 255, 0.28);
}

.dp-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.dp-why-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
}

/* Process */
.dp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dp-process-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 24px 28px;
    box-shadow: 0 12px 36px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.dp-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .dp-process-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 87, 255, 0.3);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12);
    }

    .dp-process-card:hover::before {
        opacity: 1;
    }
}

.dp-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--light-accent);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
}

.dp-process-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.dp-process-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
}

/* Marketplace banner */
.dp-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dp-banner-bg {
    position: absolute;
    inset: 0;
    background: url('../images/products/digital-marketplace-banner.webp') center/cover no-repeat;
}

.dp-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 27, 77, 0.88) 0%, rgba(7, 27, 77, 0.55) 50%, rgba(7, 27, 77, 0.25) 100%);
}

.dp-banner-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.dp-banner-content {
    max-width: 560px;
}

.dp-banner-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.dp-banner-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

/* FAQ */
.dp-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dp-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dp-faq-item.is-open {
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 87, 255, 0.1);
}

.dp-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.dp-faq-trigger:hover,
.dp-faq-trigger:focus-visible {
    color: var(--primary);
    outline: none;
}

.dp-faq-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--primary);
}

.dp-faq-icon {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    color: var(--primary);
}

.dp-faq-item.is-open .dp-faq-icon {
    transform: rotate(180deg);
}

.dp-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.dp-faq-item.is-open .dp-faq-panel {
    max-height: 280px;
}

.dp-faq-panel p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text);
}

.dp-faq-panel a {
    color: var(--primary);
    font-weight: 600;
}

/* Final CTA */
.dp-cta {
    padding: 100px 0;
    background: var(--white);
}

.dp-cta-inner {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
    padding: 72px 48px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 45%, var(--primary) 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 87, 255, 0.2);
}

.dp-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.dp-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.dp-cta-desc {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto 32px;
}

.dp-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.dp-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dp-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 1199px) {
    .dp-section {
        padding: 80px 0;
    }

    .dp-hero,
    .dp-hero-inner {
        min-height: 520px;
    }

    .dp-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 991px) {
    .dp-featured-layout,
    .dp-collection-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dp-collection-media {
        order: 1;
    }

    .dp-collection-content {
        order: 2;
    }

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

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

    .dp-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dp-section {
        padding: 64px 0;
    }

    .dp-hero,
    .dp-hero-inner {
        min-height: auto;
        padding: 80px 0;
    }

    .dp-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .dp-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .dp-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .dp-hero-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .dp-categories-grid,
    .dp-why-grid,
    .dp-process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dp-section-header {
        margin-bottom: 40px;
    }

    .dp-cta {
        padding: 64px 0;
    }

    .dp-cta-inner {
        padding: 48px 24px;
    }

    .dp-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .dp-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .dp-banner-inner {
        padding: 64px 0;
    }

    .dp-banner-content {
        text-align: center;
        margin: 0 auto;
    }

    .dp-faq-trigger {
        padding: 18px 20px;
        font-size: 15px;
    }

    .dp-faq-panel p {
        padding: 0 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-hero-glow--1,
    .dp-hero-glow--2 {
        animation: none;
    }

    .dp-showcase-glass,
    .dp-highlight-item,
    .dp-category-card,
    .dp-why-card,
    .dp-process-card,
    .dp-faq-panel,
    .dp-faq-icon {
        transition: none;
    }

    .dp-faq-item.is-open .dp-faq-panel {
        max-height: none;
    }

    .dp-showcase-glass {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ==========================================================================
   Portfolio Page
   ========================================================================== */

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

.pf-section--gradient {
    background: linear-gradient(180deg, var(--background) 0%, rgba(238, 245, 255, 0.5) 50%, var(--white) 100%);
}

.pf-section--gray {
    background: #F0F2F7;
}

.pf-section-header {
    max-width: 720px;
    margin-bottom: 56px;
}

.pf-section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pf-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pf-section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
}

/* Hero */
.pf-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 55%, var(--light-accent) 100%);
}

.pf-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(0, 87, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(0, 87, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.pf-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
    min-height: 700px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.pf-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.pf-hero-title {
    font-size: clamp(32px, 4.2vw, 50px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.pf-hero-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 32px;
    max-width: 520px;
}

.pf-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pf-hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.pf-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 87, 255, 0.18);
    filter: blur(70px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pfGlowPulse 6s ease-in-out infinite;
}

@keyframes pfGlowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.pf-stat-float {
    position: absolute;
    z-index: 3;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(7, 27, 77, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: pfFloat 5s ease-in-out infinite;
}

.pf-stat-float--1 {
    top: 8%;
    right: -4%;
    animation-delay: 0s;
}

.pf-stat-float--2 {
    bottom: 12%;
    left: -6%;
    animation-delay: 1.5s;
}

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

.pf-stat-float-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pf-stat-float-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--body-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pf-browser-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 28px 72px rgba(7, 27, 77, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-browser-mockup:hover {
        transform: translateY(-8px);
        box-shadow: 0 36px 80px rgba(0, 87, 255, 0.2);
    }
}

.pf-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: #F3F5FA;
    border-bottom: 1px solid var(--border);
}

.pf-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDE3EF;
}

.pf-browser-bar span:first-child { background: #FF5F57; }
.pf-browser-bar span:nth-child(2) { background: #FFBD2E; }
.pf-browser-bar span:nth-child(3) { background: #28CA41; }

.pf-browser-screen {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.pf-browser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.pf-browser-mockup:hover .pf-browser-image {
    transform: scale(1.04);
}

/* Stats */
.pf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pf-stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 12px 36px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-stat-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 87, 255, 0.3);
        box-shadow: 0 22px 52px rgba(0, 87, 255, 0.14);
    }
}

.pf-stat-number {
    display: block;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.pf-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* Featured projects */
.pf-project-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.pf-project-row:last-child {
    margin-bottom: 0;
}

.pf-project-row--reverse .pf-project-media {
    order: 2;
}

.pf-project-row--reverse .pf-project-content {
    order: 1;
}

.pf-project-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(7, 27, 77, 0.14);
    border: 1px solid var(--border);
}

.pf-project-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 11;
    transition: transform 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-project-image-wrap:hover .pf-project-image {
        transform: scale(1.06);
    }
}

.pf-project-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.pf-project-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pf-project-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 24px;
}

.pf-project-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pf-project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.pf-project-features li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* Timeline */
.pf-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
}

.pf-timeline-track {
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    z-index: 0;
}

.pf-timeline-progress {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-timeline.is-animated .pf-timeline-progress {
    width: 100%;
}

.pf-timeline-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 8px;
}

.pf-timeline-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.15);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-timeline-step:hover .pf-timeline-num {
        transform: scale(1.08);
        background: var(--primary);
        color: var(--white);
    }
}

.pf-timeline-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.pf-timeline-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body-text);
}

/* Technologies */
.pf-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pf-tech-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 8px 28px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-tech-card:hover {
        transform: scale(1.05);
        border-color: rgba(0, 87, 255, 0.4);
        box-shadow: 0 0 32px rgba(0, 87, 255, 0.18);
    }
}

/* Testimonials */
.pf-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-testimonial-card {
    margin: 0;
    padding: 36px 28px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 12px 36px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-testimonial-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 87, 255, 0.25);
        box-shadow: 0 22px 52px rgba(0, 87, 255, 0.12);
    }
}

.pf-testimonial-quote {
    color: var(--primary);
    opacity: 0.35;
    margin-bottom: 12px;
}

.pf-testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pf-testimonial-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--body-text);
    font-style: italic;
}

/* Why */
.pf-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pf-why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12);
    }
}

.pf-why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(0, 87, 255, 0.25);
}

.pf-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pf-why-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
}

/* CTA */
.pf-cta {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}

.pf-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.pf-cta-shape--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -60px;
    background: rgba(0, 87, 255, 0.25);
    animation: pfGlowPulse 8s ease-in-out infinite;
}

.pf-cta-shape--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: -40px;
    background: rgba(10, 102, 255, 0.2);
    animation: pfGlowPulse 10s ease-in-out infinite reverse;
}

.pf-cta-glass {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.pf-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: rgba(0, 87, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.pf-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pf-cta-desc {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.pf-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.pf-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.pf-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 1199px) {
    .pf-section {
        padding: 80px 0;
    }

    .pf-hero,
    .pf-hero-inner {
        min-height: 620px;
    }

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

    .pf-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .pf-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .pf-hero {
        min-height: auto;
    }

    .pf-hero-content {
        text-align: center;
    }

    .pf-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .pf-hero-buttons {
        justify-content: center;
    }

    .pf-stat-float--1 {
        right: 4%;
        top: 4%;
    }

    .pf-stat-float--2 {
        left: 4%;
        bottom: 8%;
    }

    .pf-project-row,
    .pf-project-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 64px;
    }

    .pf-project-row--reverse .pf-project-media,
    .pf-project-row--reverse .pf-project-content {
        order: unset;
    }

    .pf-timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pf-timeline-track {
        display: none;
    }

    .pf-timeline-step {
        flex: 0 0 calc(33.333% - 16px);
        margin-bottom: 24px;
    }

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

@media (max-width: 767px) {
    .pf-section {
        padding: 64px 0;
    }

    .pf-hero-buttons,
    .pf-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pf-hero-buttons .btn-hero,
    .pf-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .pf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pf-stat-card {
        padding: 28px 16px;
    }

    .pf-stat-number {
        font-size: clamp(28px, 8vw, 40px);
    }

    .pf-stat-label {
        font-size: 12px;
    }

    .pf-testimonials-grid,
    .pf-why-grid,
    .pf-tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pf-stat-float {
        display: none;
    }

    .pf-project-features {
        grid-template-columns: 1fr;
    }

    .pf-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 24px;
        gap: 0;
    }

    .pf-timeline-track {
        display: block;
        top: 0;
        bottom: 0;
        left: 48px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .pf-timeline.is-animated .pf-timeline-progress {
        width: 100%;
        height: 100%;
    }

    .pf-timeline-progress {
        width: 100%;
        height: 0;
        transition: height 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pf-timeline-step {
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 32px 48px;
        width: 100%;
    }

    .pf-timeline-num {
        margin-bottom: 12px;
    }

    .pf-cta {
        padding: 64px 0;
    }

    .pf-cta-glass {
        padding: 48px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf-hero-glow,
    .pf-stat-float,
    .pf-cta-shape--1,
    .pf-cta-shape--2 {
        animation: none;
    }

    .pf-stat-card,
    .pf-project-image,
    .pf-testimonial-card,
    .pf-why-card,
    .pf-tech-card,
    .pf-browser-mockup,
    .pf-timeline-progress {
        transition: none;
    }

    .pf-timeline.is-animated .pf-timeline-progress {
        width: 100%;
        height: 100%;
    }

    .pf-cta-glass,
    .pf-stat-float,
    .pf-tech-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */

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

.pr-section--soft {
    background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
}

.pr-section-header {
    max-width: 720px;
    margin-bottom: 56px;
}

.pr-section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pr-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pr-section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-text);
}

/* Hero */
.pr-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 60%, var(--light-accent) 100%);
    overflow: hidden;
}

.pr-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pr-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.pr-hero-title {
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.pr-hero-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 28px;
    max-width: 540px;
}

.pr-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.pr-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pr-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.pr-trust-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.pr-hero-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(7, 27, 77, 0.14);
    background: var(--white);
    padding: 12px;
}

.pr-hero-image {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
}

/* Philosophy */
.pr-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pr-philosophy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pr-philosophy-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 87, 255, 0.3);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12);
    }
}

.pr-philosophy-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 18px;
}

.pr-philosophy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pr-philosophy-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

/* Pricing cards */
.pr-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pr-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 28px 32px;
    box-shadow: 0 12px 36px rgba(7, 27, 77, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .pr-plan-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 87, 255, 0.35);
        box-shadow: 0 22px 52px rgba(0, 87, 255, 0.14);
    }
}

.pr-plan-card--popular {
    border-color: rgba(0, 87, 255, 0.35);
    box-shadow: 0 16px 44px rgba(0, 87, 255, 0.12);
}

.pr-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
}

.pr-plan-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    padding-right: 72px;
}

.pr-plan-card:not(.pr-plan-card--popular) .pr-plan-title {
    padding-right: 0;
}

.pr-plan-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
    margin-bottom: 16px;
}

.pr-plan-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.pr-plan-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.pr-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-text);
}

.pr-plan-features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.pr-plan-btn {
    width: 100%;
    margin-top: auto;
}

/* Comparison table */
.pr-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(7, 27, 77, 0.07);
    background: var(--white);
}

.pr-table-wrap:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.pr-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
}

.pr-table thead {
    background: var(--background);
}

.pr-table th,
.pr-table td {
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pr-table th[scope="row"] {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 180px;
}

.pr-table thead th {
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
}

.pr-table tbody tr:last-child th,
.pr-table tbody tr:last-child td {
    border-bottom: none;
}

.pr-table-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-accent);
    color: var(--primary);
    font-weight: 700;
}

.pr-table-no {
    color: var(--body-text);
    font-weight: 500;
}

.pr-table-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--body-text);
    text-align: center;
}

/* Cost factors */
.pr-factors-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pr-factors-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 56px rgba(7, 27, 77, 0.12);
}

.pr-factors-image {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pr-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.pr-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.pr-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* Why custom quotes */
.pr-quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pr-quote-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pr-quote-block:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 87, 255, 0.25);
        box-shadow: 0 16px 40px rgba(0, 87, 255, 0.1);
    }
}

.pr-quote-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    color: var(--white);
}

.pr-quote-block h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.pr-quote-block p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

/* FAQ */
.pr-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pr-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pr-faq-item.is-open {
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 87, 255, 0.1);
}

.pr-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pr-faq-trigger:hover,
.pr-faq-trigger:focus-visible {
    color: var(--primary);
    outline: none;
}

.pr-faq-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--primary);
}

.pr-faq-icon {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    color: var(--primary);
}

.pr-faq-item.is-open .pr-faq-icon {
    transform: rotate(180deg);
}

.pr-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.pr-faq-item.is-open .pr-faq-panel {
    max-height: 320px;
}

.pr-faq-panel p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text);
}

.pr-faq-panel a {
    color: var(--primary);
    font-weight: 600;
}

/* CTA */
.pr-cta {
    padding: 100px 0;
    background: var(--white);
}

.pr-cta-inner {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
    padding: 72px 48px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 45%, var(--primary) 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 87, 255, 0.2);
}

.pr-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.pr-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pr-cta-desc {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    margin: 0 auto 32px;
}

.pr-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.pr-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pr-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 1199px) {
    .pr-section {
        padding: 80px 0;
    }

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

@media (max-width: 991px) {
    .pr-hero-inner,
    .pr-factors-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pr-hero-content {
        order: 1;
    }

    .pr-hero-media {
        order: 2;
    }

    .pr-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .pr-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pr-section {
        padding: 64px 0;
    }

    .pr-hero {
        padding: 64px 0;
    }

    .pr-hero-content {
        text-align: center;
    }

    .pr-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .pr-hero-buttons,
    .pr-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pr-hero-buttons .btn-hero,
    .pr-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .pr-trust-list {
        align-items: flex-start;
        text-align: left;
    }

    .pr-plans-grid,
    .pr-quotes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pr-plan-title {
        padding-right: 0;
    }

    .pr-cta {
        padding: 64px 0;
    }

    .pr-cta-inner {
        padding: 48px 24px;
    }

    .pr-faq-trigger {
        padding: 18px 20px;
        font-size: 15px;
    }

    .pr-faq-panel p {
        padding: 0 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pr-philosophy-card,
    .pr-plan-card,
    .pr-quote-block,
    .pr-faq-panel,
    .pr-faq-icon {
        transition: none;
    }

    .pr-faq-item.is-open .pr-faq-panel {
        max-height: none;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

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

.ct-section--soft {
    background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
}

.ct-section-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.ct-section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ct-section-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ct-section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
}

/* Hero */
.ct-hero {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 50%, var(--primary) 100%);
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 87, 255, 0.2) 0%, transparent 45%);
    pointer-events: none;
}

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

.ct-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}

.ct-hero-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.ct-hero-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    max-width: 540px;
}

.ct-hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.ct-hero-points li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.ct-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-hero-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.ct-hero-card--static {
    cursor: default;
}

@media (hover: hover) and (pointer: fine) {
    a.ct-hero-card:hover {
        transform: translateX(6px);
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.28);
    }
}

.ct-hero-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    margin-bottom: 8px;
}

.ct-hero-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.ct-hero-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    word-break: break-word;
}

/* Form section */
.ct-form-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: start;
}

.ct-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 16px 48px rgba(7, 27, 77, 0.08);
}

.ct-form-panel .section-label {
    margin-bottom: 12px;
}

.ct-form-panel .ct-section-title {
    margin-bottom: 10px;
}

.ct-form-panel .ct-section-desc {
    margin-bottom: 28px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ct-required {
    color: var(--primary);
}

.ct-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B6475' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

.ct-form-submit {
    width: 100%;
    margin-top: 4px;
}

.ct-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
}

.ct-info-card--accent {
    background: linear-gradient(135deg, var(--light-accent) 0%, rgba(0, 87, 255, 0.06) 100%);
    border-color: rgba(0, 87, 255, 0.15);
}

.ct-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.ct-info-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-text);
}

.ct-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ct-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-info-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 12px;
    color: var(--primary);
}

.ct-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--body-text);
    margin-bottom: 4px;
}

.ct-info-list a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.ct-info-list a:hover {
    color: var(--secondary);
}

.ct-info-list span:not(.ct-info-icon):not(.ct-info-label) {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.5;
}

.ct-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.ct-link-list a::after {
    content: '→';
    font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
    .ct-link-list a:hover {
        color: var(--secondary);
        transform: translateX(4px);
    }
}

/* Inquiry cards */
.ct-inquiry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ct-inquiry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .ct-inquiry-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 87, 255, 0.35);
        box-shadow: 0 20px 48px rgba(0, 87, 255, 0.12);
    }
}

.ct-inquiry-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 18px;
}

.ct-inquiry-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.ct-inquiry-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--body-text);
    flex: 1;
    margin-bottom: 18px;
}

.ct-inquiry-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ct-inquiry-link:hover {
    color: var(--secondary);
}

/* Visual section */
.ct-visual-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ct-visual-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 56px rgba(7, 27, 77, 0.12);
}

.ct-visual-image {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.ct-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
}

.ct-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--light-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* CTA */
.ct-cta {
    padding: 100px 0;
    background: var(--white);
}

.ct-cta-inner {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 45%, var(--primary) 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 87, 255, 0.2);
}

.ct-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.ct-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.ct-cta-desc {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    margin: 0 auto 28px;
}

.ct-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ct-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.ct-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 1199px) {
    .ct-section {
        padding: 80px 0;
    }

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

@media (max-width: 991px) {
    .ct-hero-inner,
    .ct-form-layout,
    .ct-visual-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-hero {
        padding: 72px 0 80px;
    }
}

@media (max-width: 767px) {
    .ct-section {
        padding: 64px 0;
    }

    .ct-form-panel {
        padding: 28px 22px;
    }

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

    .ct-form-submit,
    .ct-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .ct-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ct-inquiry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ct-cta {
        padding: 64px 0;
    }

    .ct-cta-inner {
        padding: 48px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ct-hero-card,
    .ct-inquiry-card,
    .ct-link-list a {
        transition: none;
    }

    .ct-hero-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */

.fq-hero {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 55%, var(--light-accent) 100%);
}

.fq-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(0, 87, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.fq-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.fq-hero-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.fq-hero-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--body-text);
    max-width: 520px;
}

.fq-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fq-hero-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .fq-hero-card:hover {
        transform: translateX(6px);
        border-color: rgba(0, 87, 255, 0.35);
        box-shadow: 0 16px 40px rgba(0, 87, 255, 0.12);
    }
}

.fq-hero-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border-radius: 12px;
    color: var(--primary);
    margin-bottom: 6px;
}

.fq-hero-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.fq-hero-card-desc {
    font-size: 13px;
    color: var(--body-text);
}

.fq-section {
    padding: 80px 0;
}

.fq-section--soft {
    background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
}

.fq-category-header {
    margin-bottom: 32px;
}

.fq-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.fq-accordion {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fq-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fq-faq-item.is-open {
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 87, 255, 0.1);
}

.fq-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.fq-faq-trigger:hover,
.fq-faq-trigger:focus-visible {
    color: var(--primary);
    outline: none;
}

.fq-faq-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--primary);
}

.fq-faq-icon {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    color: var(--primary);
}

.fq-faq-item.is-open .fq-faq-icon {
    transform: rotate(180deg);
}

.fq-faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.fq-faq-item.is-open .fq-faq-panel {
    max-height: 320px;
}

.fq-faq-panel p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text);
}

.fq-faq-panel a {
    color: var(--primary);
    font-weight: 600;
}

.fq-cta {
    padding: 80px 0;
    background: var(--white);
}

.fq-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 50%, var(--primary) 100%);
    box-shadow: 0 20px 56px rgba(0, 87, 255, 0.2);
}

.fq-cta-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.fq-cta-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.fq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.fq-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.fq-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.lg-hero {
    padding: 72px 0 64px;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 55%, var(--primary) 100%);
    text-align: center;
}

.lg-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.lg-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}

.lg-hero-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.lg-hero-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
}

.lg-updated {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.lg-section {
    padding: 80px 0;
    background: var(--white);
}

.lg-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.lg-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.lg-nav,
.lg-related {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 20px;
}

.lg-nav-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--body-text);
    margin-bottom: 14px;
}

.lg-nav ul,
.lg-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lg-nav a,
.lg-related a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lg-nav a:hover,
.lg-related a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.lg-content h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-top: 8px;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.lg-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.lg-content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--body-text);
    margin-bottom: 16px;
}

.lg-content ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.lg-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 8px;
}

.lg-content a {
    color: var(--primary);
    font-weight: 500;
}

.lg-cta {
    padding: 64px 0;
    background: var(--background);
}

.lg-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(7, 27, 77, 0.06);
}

.lg-cta-inner p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 991px) {
    .fq-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lg-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lg-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .fq-section {
        padding: 64px 0;
    }

    .fq-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fq-cta-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .fq-faq-trigger {
        padding: 18px 20px;
        font-size: 15px;
    }

    .fq-faq-panel p {
        padding: 0 20px 18px;
    }

    .lg-section {
        padding: 64px 0;
    }

    .lg-cta-inner {
        flex-direction: column;
    }

    .lg-cta-inner .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fq-hero-card,
    .fq-faq-panel,
    .fq-faq-icon,
    .lg-nav a,
    .lg-related a {
        transition: none;
    }

    .fq-faq-item.is-open .fq-faq-panel {
        max-height: none;
    }
}

/* Legal contact block */
.lg-business-contact {
    margin-top: 12px;
}

.lg-contact-list {
    margin: 16px 0 20px;
    padding-left: 20px;
}

.lg-contact-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.lg-contact-list strong {
    color: var(--navy);
}

/* Products shop grid */
.dp-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.dp-shop-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dp-shop-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--background);
}

.dp-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-shop-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background: rgba(7, 27, 77, 0.88);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.dp-shop-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.dp-shop-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.dp-shop-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dp-shop-meta {
    margin-bottom: 18px;
}

.dp-shop-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.dp-shop-note {
    font-size: 13px;
    color: var(--text-muted);
}

.dp-shop-body .btn-buy {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.dp-shop-note-block {
    margin-top: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.dp-shop-note-block a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 991px) {
    .dp-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dp-shop-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkout page */
.checkout-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.checkout-badge {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 16px;
    background: var(--light-accent);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.checkout-title {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--navy);
    margin-bottom: 8px;
}

.checkout-category {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.checkout-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.checkout-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.checkout-note {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-help,
.checkout-policies {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.checkout-policies {
    margin-top: 16px;
}

.checkout-message {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

/* Contact honeypot */
.ct-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Portfolio text stat cards */
.pf-stat-card--text {
    text-align: left;
    align-items: flex-start;
}

.pf-stat-card--text .pf-stat-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pf-stat-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.checkout-notice {
    margin: 20px 0;
    padding: 16px 18px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.checkout-notice p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Pay Deposit page */
.pay-deposit-page .pd-hero {
    padding: 88px 0 72px;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 55%, var(--light-accent) 100%);
}

.pd-hero-inner {
    max-width: 820px;
}

.pd-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 20px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.pd-hero-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.pd-hero-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.pd-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.pd-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-trust-list li {
    position: relative;
    padding-left: 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

.pd-trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.pd-section {
    padding: 80px 0;
}

.pd-section--soft {
    background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
}

.pd-section-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.pd-section-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.pd-section-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

.pd-workflow-grid,
.pd-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.pd-workflow-card,
.pd-tier-card,
.pd-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.pd-workflow-num {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.pd-workflow-card h3,
.pd-tier-title,
.pd-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pd-workflow-card p,
.pd-tier-desc,
.pd-info-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

.pd-tier-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.pd-tier-note,
.pd-tier-for {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pd-tier-list {
    margin: 16px 0 24px;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.pd-tier-list li {
    margin-bottom: 8px;
}

.pd-tier-btn {
    width: 100%;
    justify-content: center;
}

.pd-tier-disclaimer {
    margin-top: 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.pd-custom-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.pd-checklist {
    margin: 20px 0 28px;
    padding-left: 0;
    list-style: none;
}

.pd-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.pd-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.pd-custom-aside {
    display: grid;
    gap: 20px;
}

.pd-faq {
    max-width: 860px;
}

.pd-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
}

.pd-faq-item + .pd-faq-item {
    margin-top: 12px;
}

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

.pd-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pd-faq-item.is-open .pd-faq-panel {
    max-height: 240px;
}

.pd-faq-panel p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.pd-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pd-faq-item.is-open .pd-faq-icon {
    transform: rotate(180deg);
}

.pd-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0A3D9E 50%, var(--primary) 100%);
}

.pd-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.pd-cta-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.pd-cta-desc {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.7;
}

.pd-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Pricing deposits section */
.pr-deposits-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.pr-deposits-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.pr-deposits-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.pr-deposits-steps {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pr-deposits-steps li {
    margin-bottom: 10px;
}

.pr-deposits-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .pd-workflow-grid,
    .pd-tiers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-custom-layout,
    .pr-deposits-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pd-workflow-grid,
    .pd-tiers-grid {
        grid-template-columns: 1fr;
    }

    .pd-hero-buttons,
    .pd-cta-buttons,
    .pr-deposits-buttons {
        flex-direction: column;
    }

    .pd-hero-buttons .btn-hero,
    .pd-cta-buttons .btn-hero,
    .pr-deposits-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Paystack / NGN payment disclaimer */
.hw-payment-disclaimer-wrap {
    margin-top: 28px;
    max-width: 760px;
}

.hw-payment-disclaimer {
    margin: 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.7;
}

.checkout-page .hw-payment-disclaimer,
.pay-deposit-page .hw-payment-disclaimer,
.pricing-page .hw-payment-disclaimer,
.products-page .hw-payment-disclaimer {
    margin: 16px 0 20px;
    background: var(--light-accent);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.pd-tier-disclaimer + .hw-payment-disclaimer {
    margin-top: 16px;
    text-align: center;
}
