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

:root {
    --primary: #0369A1;
    --primary-dark: #075985;
    --primary-light: #0EA5E9;
    --accent: #06b6d4;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #475569;
    --gray-light: #94a3b8;
    --text: #020617;
    --light: #F8FAFC;
    --light-2: #e2e8f0;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-dark: linear-gradient(135deg, #1e3a5f, #0f172a);
    --gradient-hero: linear-gradient(180deg, #1e3a5f 0%, #0f172a 50%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 200ms ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

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

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }


/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 12px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    top: 8px;
    padding: 10px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.3));
}

.footer .logo-icon svg {
    stroke: var(--accent);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text {
    color: var(--dark);
}

.hero .logo-icon svg {
    stroke: var(--primary);
}

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

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

.nav-links a:not(.btn) {
    color: var(--dark);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn).active {
    color: var(--primary);
}

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

a, button, [role="button"], select, .trade-tag, .service-card, .package-card, .step-card, .feature-block {
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-nav {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-package {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-package:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #2a4a6b 0%, #1a3250 30%, #0f172a 70%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== iPhone Pro Max Trio ===== */
.phone-trio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.phone-mockup {
    position: relative;
    background: linear-gradient(145deg, #3a3a3c, #1c1c1e);
    border-radius: 44px;
    padding: 3px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 2px 4px rgba(0,0,0,0.3),
        0 12px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.06);
    flex-shrink: 0;
}

/* Titanium frame edge highlights */
.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 44px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255,255,255,0.15) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Side button (right) */
.phone-mockup::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
    height: 28px;
    background: linear-gradient(180deg, #4a4a4c, #2c2c2e);
    border-radius: 0 2px 2px 0;
}

.phone-center {
    width: 248px;
    z-index: 3;
    animation: floatCenter 6s ease-in-out infinite;
}

.phone-side {
    width: 208px;
    z-index: 1;
    opacity: 0.9;
}

.phone-left {
    transform: perspective(800px) rotateY(15deg) scale(0.88);
    margin-right: -16px;
    animation: floatLeft 6s ease-in-out infinite;
}

.phone-right {
    transform: perspective(800px) rotateY(-15deg) scale(0.88);
    margin-left: -16px;
    animation: floatRight 6s ease-in-out infinite;
}

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

@keyframes floatLeft {
    0%, 100% { transform: perspective(800px) rotateY(15deg) scale(0.88) translateY(0); }
    50% { transform: perspective(800px) rotateY(15deg) scale(0.88) translateY(-6px); }
}

@keyframes floatRight {
    0%, 100% { transform: perspective(800px) rotateY(-15deg) scale(0.88) translateY(0); }
    50% { transform: perspective(800px) rotateY(-15deg) scale(0.88) translateY(-6px); }
}

/* Inner bezel */
.phone-inner {
    background: #000;
    border-radius: 42px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Dynamic Island */
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
}

/* Camera dot inside Dynamic Island */
.phone-notch::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, #1a1a2e 30%, #0d0d1a 60%, #000 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* Status bar */
.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 0;
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    height: 36px;
    position: relative;
    z-index: 5;
}

.phone-status-time { font-weight: 700; }
.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.phone-status-icons svg { width: 10px; height: 10px; }

/* Battery icon */
.status-battery {
    width: 16px;
    height: 8px;
    border: 1px solid var(--dark);
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1px;
}
.status-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 4px;
    background: var(--dark);
    border-radius: 0 1px 1px 0;
}
.status-battery-fill {
    width: 80%;
    height: 100%;
    background: var(--dark);
    border-radius: 1px;
}

.phone-screen {
    background: var(--white);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

/* Home indicator */
.phone-home {
    width: 36%;
    height: 4px;
    background: var(--dark);
    border-radius: 4px;
    margin: 6px auto 8px;
    opacity: 0.2;
}

/* Auto-scrolling screens (left & right phones) */
.auto-scroll-content {
    height: 430px;
    overflow: hidden;
    position: relative;
}

.auto-scroll-content > * {
    animation: autoScroll 18s ease-in-out infinite;
}

.phone-side .phone-screen {
    height: 470px;
}

@keyframes autoScroll {
    0%, 8% { transform: translateY(0); }
    40%, 58% { transform: translateY(-45%); }
    88%, 100% { transform: translateY(0); }
}

/* Interactive center phone */
.interactive-scroll {
    height: 430px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.interactive-scroll::-webkit-scrollbar { width: 3px; }
.interactive-scroll::-webkit-scrollbar-track { background: transparent; }
.interactive-scroll::-webkit-scrollbar-thumb { background: var(--light-2); border-radius: 3px; }

.phone-center .phone-screen { height: 470px; }

.app-header-sticky {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px 8px; background: var(--primary); color: var(--white);
    position: sticky; top: 0; z-index: 2;
}

.app-header-static {
    padding: 10px 14px 8px; background: var(--primary); color: var(--white);
    text-align: center;
}

.scroll-hint {
    text-align: center; font-size: 0.55rem; color: var(--gray-light);
    padding: 8px 0 12px; letter-spacing: 0.5px;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 8px;
    background: var(--primary);
    color: var(--white);
}

.app-back { font-size: 1.1rem; }
.app-title { font-weight: 600; font-size: 0.8rem; }
.app-menu { font-size: 1rem; letter-spacing: 1px; }

.tradie-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 8px;
}

.tradie-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(3, 105, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tradie-avatar svg { width: 22px; height: 22px; stroke: var(--primary); }
.tradie-name { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.tradie-rating { font-size: 0.65rem; color: #f59e0b; }
.tradie-rating span { color: var(--gray); }
.tradie-location { font-size: 0.65rem; color: var(--gray); }

.service-list { padding: 0 12px; display: flex; flex-direction: column; gap: 4px; }

.service-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 10px; background: var(--light); border-radius: 8px;
    font-size: 0.7rem; font-weight: 500; color: var(--dark-2);
    border: 1.5px solid transparent;
}

.service-item.active { border-color: var(--primary); background: rgba(3, 105, 161, 0.06); }
.service-time { font-size: 0.6rem; color: var(--gray); }

.app-section-label {
    font-size: 0.6rem; font-weight: 700; color: var(--dark-3);
    text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 12px 3px;
}

.mini-calendar { padding: 0 12px; }

.cal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 0.7rem; color: var(--dark);
}

.cal-header span { color: var(--gray); cursor: pointer; font-size: 0.9rem; }

.cal-days, .cal-dates {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center;
}

.cal-day-label { font-size: 0.55rem; font-weight: 600; color: var(--gray-light); padding: 4px 0; }

.cal-date { font-size: 0.55rem; padding: 4px 2px; border-radius: 6px; color: var(--dark-2); font-weight: 500; }
.cal-date.dim { color: var(--gray-light); }
.cal-date.available { background: rgba(34, 197, 94, 0.1); color: #16a34a; font-weight: 600; }
.cal-date.selected { background: var(--primary); color: var(--white); }

.phone-book-btn {
    margin: 8px 12px 4px; padding: 8px; background: var(--gradient);
    color: var(--white); text-align: center; border-radius: 10px;
    font-size: 0.75rem; font-weight: 600;
}

.selected-date-bar {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: rgba(3, 105, 161, 0.06); font-size: 0.75rem;
    font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--light-2);
}

.time-slots { padding: 0 12px; display: flex; flex-direction: column; gap: 4px; }

.time-slot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 10px; background: var(--light); border-radius: 8px;
    font-size: 0.7rem; font-weight: 600; color: var(--dark-2);
    border: 1.5px solid transparent;
}

.time-slot.selected { border-color: var(--primary); background: rgba(3, 105, 161, 0.06); color: var(--primary); }
.time-slot.booked { color: var(--gray-light); }

.booked-label {
    font-size: 0.55rem; background: rgba(239, 68, 68, 0.1);
    color: #ef4444; padding: 2px 8px; border-radius: 4px; font-weight: 500;
}

.slot-check { color: var(--primary); font-weight: 700; }

.booking-summary {
    margin: 6px 12px; padding: 10px; background: var(--light);
    border-radius: 10px; display: flex; flex-direction: column; gap: 5px;
}
.summary-row { display: flex; justify-content: space-between; font-size: 0.62rem; }
.summary-row span { color: var(--gray); }
.summary-row strong { color: var(--dark); font-size: 0.62rem; }

/* ===== Premium Phone Screens ===== */

/* Shared elements */
.ps-logo-mark {
    width: 22px; height: 22px; background: var(--primary); color: var(--white);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; font-weight: 700;
}
.ps-logo-sm { width: 18px; height: 18px; font-size: 0.48rem; border-radius: 4px; }
.ps-tag { font-size: 0.42rem; color: rgba(255,255,255,0.7); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px; }
.ps-btn-fill { display: inline-block; padding: 5px 14px; background: var(--accent); color: var(--white); border-radius: 6px; font-size: 0.5rem; font-weight: 600; }
.ps-btn-ghost { display: inline-block; padding: 5px 14px; border: 1px solid rgba(255,255,255,0.3); color: var(--white); border-radius: 6px; font-size: 0.5rem; font-weight: 600; }

/* Hero banner */
.ps-hero {
    background: linear-gradient(to bottom, rgba(12,74,110,0.85), rgba(7,89,133,0.9)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80') center/cover;
    padding: 0; position: relative; overflow: hidden;
}
.ps-hero::after {
    content: ''; position: absolute; right: -20px; bottom: -20px; width: 100px; height: 100px;
    background: rgba(6,182,212,0.12); border-radius: 50%;
}
.ps-hero-alt {
    background: linear-gradient(to bottom, rgba(15,23,42,0.85), rgba(30,41,59,0.9)),
        url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=600&q=80') center/cover;
}
.ps-hero-nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 10px 0; }
.ps-nav-dots { display: flex; gap: 3px; }
.ps-nav-dots span { width: 3px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.ps-hero-content { padding: 12px 12px 16px; position: relative; z-index: 1; }
.ps-hero-title { font-size: 0.95rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.ps-hero-sub { font-size: 0.42rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.ps-hero-btns { display: flex; gap: 6px; }

/* Trust strip */
.ps-trust-strip {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 8px; background: var(--white); border-bottom: 1px solid var(--light-2);
}
.ps-trust-item { text-align: center; }
.ps-trust-item strong { display: block; font-size: 0.65rem; color: var(--primary); }
.ps-trust-item span { font-size: 0.4rem; color: var(--gray); }
.ps-trust-divider { width: 1px; height: 20px; background: var(--light-2); }

/* Cards */
.ps-card { padding: 10px 10px 8px; }
.ps-card-label { font-size: 0.52rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }

/* About */
.ps-about-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ps-about-avatar { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: url('https://images.unsplash.com/photo-1540569014015-19a7be504e3a?w=100&q=80') center/cover; }
.ps-about-row strong { font-size: 0.58rem; color: var(--dark); display: block; }
.ps-about-row span { font-size: 0.4rem; color: var(--primary); }
.ps-about-text { font-size: 0.44rem; color: var(--gray); line-height: 1.6; }

/* Photo grid */
.ps-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px; }
.ps-photo { height: 36px; border-radius: 6px; background: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=200&q=80') center/cover; }
.ps-photo:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=200&q=80'); }
.ps-photo-tall { grid-row: 1/3; height: 76px; background: url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=300&q=80') center/cover; border-radius: 6px; }

/* Reviews */
.ps-review-card { padding: 8px; background: var(--light); border-radius: 8px; margin-bottom: 6px; }
.ps-rev-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.ps-rev-avatar {
    width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
    background: var(--primary); color: var(--white); display: flex;
    align-items: center; justify-content: center; font-size: 0.45rem; font-weight: 700;
}
.ps-rev-header > div strong { font-size: 0.5rem; color: var(--dark); display: block; }
.ps-rev-header > div span { font-size: 0.38rem; color: var(--gray); }
.ps-rev-stars { margin-left: auto; color: #f59e0b; font-size: 0.48rem; }
.ps-review-card p { font-size: 0.44rem; color: var(--gray); line-height: 1.5; font-style: italic; }

/* Map placeholder */
.ps-map-placeholder {
    padding: 10px; border-radius: 8px; text-align: center; position: relative;
    background: linear-gradient(rgba(241,245,249,0.85), rgba(241,245,249,0.85)),
        url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=400&q=60') center/cover;
}
.ps-map-areas { display: flex; flex-wrap: wrap; gap: 3px; justify-content: center; margin-top: 6px; }
.ps-map-areas span { padding: 2px 7px; background: var(--white); border-radius: 3px; font-size: 0.4rem; color: var(--dark-3); font-weight: 500; }

/* Footer CTA */
.ps-footer-cta {
    margin: 8px 10px; padding: 12px; border-radius: 10px; text-align: center; color: var(--white);
    background: linear-gradient(rgba(12,74,110,0.88), rgba(7,89,133,0.92)),
        url('https://images.unsplash.com/photo-1620626011761-996317b8d101?w=400&q=80') center/cover;
}
.ps-footer-cta strong { font-size: 0.55rem; display: block; margin-bottom: 6px; }

/* ===== Center Phone: Booking UI ===== */
.ps-booking-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 12px; background: var(--primary); color: var(--white);
    position: sticky; top: 0; z-index: 2;
}
.ps-booking-nav strong { font-size: 0.72rem; }

.ps-bk-profile {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    border-bottom: 1px solid var(--light-2);
}
.ps-bk-avatar { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: url('https://images.unsplash.com/photo-1540569014015-19a7be504e3a?w=100&q=80') center/cover; }
.ps-bk-info strong { font-size: 0.65rem; color: var(--dark); display: block; }
.ps-bk-rating { font-size: 0.45rem; color: var(--gray); }
.ps-stars-sm { color: #f59e0b; }
.ps-bk-verified { margin-left: auto; }

/* Step progress */
.ps-steps-bar {
    display: flex; gap: 2px; padding: 8px 12px; background: var(--light);
}
.ps-step {
    flex: 1; text-align: center; font-size: 0.42rem; font-weight: 600;
    padding: 4px 0; border-radius: 4px; color: var(--gray-light);
}
.ps-step.done { color: var(--primary); background: rgba(3,105,161,0.06); }
.ps-step.active-step { color: var(--white); background: var(--primary); }

/* Booking sections */
.ps-bk-section { padding: 10px 12px 6px; }
.ps-bk-label { font-size: 0.52rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }

/* Service cards */
.ps-service-list { display: flex; flex-direction: column; gap: 6px; }
.ps-svc-item {
    display: flex; align-items: center; gap: 8px; padding: 10px;
    background: var(--light); border-radius: 8px; border: 1.5px solid transparent;
    position: relative;
}
.ps-svc-selected { border-color: var(--primary); background: rgba(3,105,161,0.04); }
.ps-svc-icon {
    width: 28px; height: 28px; min-width: 28px; border-radius: 6px;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.ps-svc-text { flex: 1; }
.ps-svc-text strong { font-size: 0.58rem; color: var(--dark); display: block; margin-bottom: 1px; }
.ps-svc-text span { font-size: 0.42rem; color: var(--gray); line-height: 1.4; }
.ps-svc-price { font-size: 0.5rem; font-weight: 700; color: var(--primary); }
.ps-svc-check {
    width: 16px; height: 16px; min-width: 16px; background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.48rem; margin-left: 4px;
}

/* Calendar */
.ps-calendar { background: var(--light); border-radius: 10px; padding: 8px; }
.ps-cal-nav { display: flex; justify-content: space-between; align-items: center; font-size: 0.6rem; margin-bottom: 6px; color: var(--dark); }
.ps-cal-nav span { color: var(--gray); cursor: pointer; }
.ps-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; text-align: center; }
.ps-cal-wk { font-size: 0.42rem; font-weight: 600; color: var(--gray-light); padding: 3px 0; }
.ps-cal-d { font-size: 0.48rem; padding: 5px 2px; border-radius: 6px; font-weight: 500; color: var(--dark-2); }
.ps-cal-d.dim { color: var(--gray-light); }
.ps-cal-d.av { background: rgba(34,197,94,0.08); color: #16a34a; font-weight: 600; }
.ps-cal-d.sel { background: var(--primary); color: var(--white); }

/* Time grid */
.ps-time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.ps-time {
    padding: 8px; background: var(--light); border-radius: 6px; text-align: center;
    font-size: 0.58rem; font-weight: 600; color: var(--dark-2); border: 1.5px solid transparent;
}
.ps-time.picked { border-color: var(--primary); color: var(--primary); background: rgba(3,105,161,0.04); }
.ps-time.bk { color: var(--gray-light); text-decoration: line-through; }

/* Summary */
.ps-summary { background: var(--light); border-radius: 10px; padding: 10px; }
.ps-sum-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.52rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.ps-sum-row:last-child { border-bottom: none; }
.ps-sum-row span { color: var(--gray); }
.ps-sum-row strong { color: var(--dark); font-size: 0.52rem; }
.ps-sum-total { padding-top: 6px; margin-top: 2px; border-top: 1px solid var(--light-2); }
.ps-sum-total strong { color: var(--primary); }

.ps-confirm-btn {
    margin: 8px 12px 4px; padding: 10px; background: var(--gradient);
    color: var(--white); text-align: center; border-radius: 10px;
    font-size: 0.68rem; font-weight: 700;
}
.ps-secure-note {
    display: flex; align-items: center; justify-content: center; gap: 4px;
    font-size: 0.4rem; color: var(--gray-light); padding: 4px 0;
}

/* ===== Right Phone: Service Detail Cards ===== */
.ps-visual-svc { border-radius: 10px; overflow: hidden; border: 1px solid var(--light-2); margin-bottom: 8px; }
.ps-vsvc-img { height: 50px; background: url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=400&q=80') center/cover; }
.ps-vsvc-img2 { background: url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=400&q=80') center/cover !important; }
.ps-vsvc-img3 { background: url('https://images.unsplash.com/photo-1613545325278-f24b0cae1224?w=400&q=80') center/cover !important; }
.ps-vsvc-body { padding: 8px; }
.ps-vsvc-body strong { font-size: 0.58rem; color: var(--dark); display: block; margin-bottom: 2px; }
.ps-vsvc-body p { font-size: 0.42rem; color: var(--gray); line-height: 1.4; margin-bottom: 6px; }
.ps-vsvc-footer { display: flex; justify-content: space-between; align-items: center; }
.ps-vsvc-footer span { font-size: 0.48rem; color: var(--gray); font-weight: 600; }
.ps-vsvc-btn { padding: 3px 10px; background: var(--primary); color: var(--white); border-radius: 4px; font-size: 0.42rem; font-weight: 600; }

/* USP list */
.ps-usp-list { display: flex; flex-direction: column; gap: 8px; }
.ps-usp-item { display: flex; align-items: flex-start; gap: 8px; }
.ps-usp-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: #22c55e; margin-top: 3px; }
.ps-usp-item strong { font-size: 0.5rem; color: var(--dark); display: block; }
.ps-usp-item span { font-size: 0.4rem; color: var(--gray); }

/* Contact rows */
.ps-contact-row {
    display: flex; align-items: center; gap: 8px; padding: 6px 0;
    font-size: 0.48rem; color: var(--dark-2); border-bottom: 1px solid var(--light);
}
.ps-contact-row:last-child { border-bottom: none; }

/* Remove old ws- styles */
.ws-nav {
    display: flex; align-items: center; gap: 6px; padding: 8px 10px;
    border-bottom: 1px solid #eee; font-size: 0.58rem; color: var(--dark);
}
.ws-nav strong {
    width: 22px; height: 22px; background: var(--primary); color: var(--white);
    border-radius: 5px; display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem;
}

.ws-hero-banner {
    padding: 14px 12px; background: linear-gradient(135deg, #0c4a6e, #075985); color: var(--white);
}
.ws-hero-badge { font-size: 0.42rem; opacity: 0.7; letter-spacing: 0.5px; margin-bottom: 6px; }
.ws-hero-h { font-size: 0.78rem; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.ws-hero-p { font-size: 0.48rem; opacity: 0.75; line-height: 1.5; }

.ws-stats-bar {
    display: flex; justify-content: space-around; padding: 8px 10px;
    background: var(--light); border-bottom: 1px solid var(--light-2);
}
.ws-stat { text-align: center; }
.ws-stat strong { display: block; font-size: 0.7rem; color: var(--primary); }
.ws-stat span { font-size: 0.42rem; color: var(--gray); }

.ws-section { padding: 0 10px 6px; }
.ws-section-h {
    font-size: 0.58rem; font-weight: 700; color: var(--dark);
    padding: 10px 0 6px; border-bottom: 1px solid var(--light-2); margin-bottom: 8px;
}

.ws-about-card { display: flex; gap: 8px; align-items: flex-start; }
.ws-avatar {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}
.ws-about-card strong { font-size: 0.6rem; color: var(--dark); display: block; }
.ws-about-card > div > span { font-size: 0.42rem; color: var(--primary); display: block; margin-bottom: 3px; }
.ws-about-card p { font-size: 0.45rem; color: var(--gray); line-height: 1.5; }

.ws-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.ws-gallery-img {
    height: 40px; border-radius: 6px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.ws-review {
    padding: 8px; background: var(--light); border-radius: 8px; margin-bottom: 6px;
}
.ws-rev-stars { color: #f59e0b; font-size: 0.55rem; margin-bottom: 3px; }
.ws-review p { font-size: 0.46rem; color: var(--gray); line-height: 1.5; font-style: italic; }
.ws-review strong { font-size: 0.42rem; color: var(--dark-3); }

.ws-areas { display: flex; flex-wrap: wrap; gap: 3px; }
.ws-areas span {
    padding: 2px 7px; background: var(--light); border-radius: 3px;
    font-size: 0.42rem; font-weight: 500; color: var(--dark-3);
}

/* Right Phone: Services & Pricing */
.ws-price-card {
    display: flex; align-items: center; gap: 8px; padding: 9px;
    border-bottom: 1px solid var(--light); transition: background 0.2s;
}
.ws-price-card.featured-pc { background: rgba(3,105,161,0.04); }
.ws-price-icon {
    width: 32px; height: 32px; min-width: 32px; border-radius: 8px;
    background: rgba(3,105,161,0.08); display: flex; align-items: center;
    justify-content: center;
}
.ws-price-info { flex: 1; }
.ws-price-info strong { font-size: 0.58rem; color: var(--dark); display: block; }
.ws-price-info span { font-size: 0.42rem; color: var(--gray); }
.ws-price-tag {
    font-size: 0.55rem; font-weight: 700; color: var(--primary);
    background: rgba(3,105,161,0.06); padding: 3px 8px; border-radius: 4px;
    white-space: nowrap;
}

.ws-usp {
    display: flex; align-items: center; gap: 6px; padding: 5px 0;
    font-size: 0.5rem; color: var(--dark-2);
}

.ws-certs { display: flex; gap: 6px; }
.ws-cert {
    flex: 1; padding: 8px 4px; background: var(--light); border-radius: 6px;
    text-align: center; font-size: 0.42rem; color: var(--primary); line-height: 1.3;
}

.ws-cta-bar {
    margin: 10px; padding: 12px; background: linear-gradient(135deg, #0c4a6e, #075985);
    border-radius: 10px; text-align: center; color: var(--white);
}
.ws-cta-bar strong { font-size: 0.58rem; display: block; margin-bottom: 6px; }
.ws-cta-btn {
    display: inline-block; padding: 5px 18px; background: var(--accent);
    border-radius: 6px; font-size: 0.5rem; font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

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

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.service-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--light-2);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(3, 105, 161, 0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
    background: var(--light);
}

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

.why-us-content .section-tag {
    margin-bottom: 16px;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-us-content > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.why-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-block {
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.feature-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.fb-icon {
    display: flex;
    align-items: center;
}

.fb-icon svg {
    stroke: var(--dark-3);
}

.fb-1 { border-left: 3px solid #f59e0b; }
.fb-2 { border-left: 3px solid #22c55e; }
.fb-3 { border-left: 3px solid var(--primary); }
.fb-4 { border-left: 3px solid var(--accent); }
.fb-5 { border-left: 3px solid #e879f9; }
.fb-6 { border-left: 3px solid #f97316; }

/* ===== Packages ===== */
.packages {
    padding: 120px 0;
    background: var(--white);
}

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

.package-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--light-2);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

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

.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.package-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header {
    padding: 36px 32px 24px;
    border-bottom: 1px solid var(--light-2);
}

.package-tier {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.package-desc {
    color: var(--gray);
    font-size: 0.9rem;
}

.package-body {
    padding: 24px 32px 36px;
}

.package-features {
    list-style: none;
    margin-bottom: 28px;
}

.package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-2);
}

.package-features li.disabled {
    color: var(--gray-light);
}

.check {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 18px;
}

.cross {
    color: var(--gray-light);
    font-size: 0.85rem;
    min-width: 18px;
}

.featured .btn-package {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* ===== Clients ===== */
.clients {
    padding: 120px 0;
    background: var(--light);
}

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

.client-card {
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

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

.client-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
}

.client-icon svg {
    width: 28px;
    height: 28px;
}

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

.client-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    text-align: center;
    padding: 80px 60px;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width,
button.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--light-2);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark);
    background: var(--light);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-card strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.info-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

.free-consult {
    padding: 28px;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.08), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(3, 105, 161, 0.15);
    border-radius: var(--radius-lg);
    color: var(--dark);
}

.free-consult h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.free-consult li {
    font-size: 0.9rem;
    color: var(--gray);
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.free-consult li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(3, 105, 161, 0.1);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* ===== Trades Grid ===== */
.trades {
    padding: 120px 0;
    background: var(--white);
}

.trades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.trade-tag {
    padding: 10px 20px;
    background: var(--light);
    border: 1px solid var(--light-2);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-2);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trade-tag svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.trade-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.25);
}

.trade-tag:hover svg {
    stroke: var(--white);
}

.trades-extra {
    max-width: 680px;
    margin: 32px auto 0;
}

.trades-extra-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-lg);
}

.trades-extra-icon {
    font-size: 2rem;
    line-height: 1;
    min-width: 40px;
}

.trades-extra-card strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.trades-extra-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.trades-cta {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
}

.trades-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.trades-cta a:hover {
    text-decoration: underline;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--light);
}

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

.step-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

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

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-container {
        gap: 30px;
    }

    .phone-side {
        width: 180px;
    }

    .phone-center {
        width: 216px;
    }

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

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

    .package-card.featured:hover {
        transform: translateY(-4px);
    }

    .section-header h2,
    .why-us-content h2,
    .cta-box h2 {
        font-size: 2rem;
    }

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a:not(.btn) {
        color: var(--dark) !important;
        font-size: 1.1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
        gap: 24px;
    }

    .hero h1 { font-size: 2rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; font-size: 0.95rem; }
    .hero-cta { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; gap: 24px; }

    .hero-visual {
        justify-content: center;
        margin-top: 10px;
    }

    /* Show all 3 phones on mobile but smaller */
    .phone-trio { gap: 0; }

    .phone-center {
        width: 180px;
    }

    .phone-center .phone-screen,
    .phone-center .interactive-scroll { height: 340px; }

    .phone-side {
        width: 140px;
        opacity: 0.8;
    }

    .phone-side .phone-screen,
    .phone-side .auto-scroll-content { height: 320px; }

    .phone-left {
        margin-right: -14px;
        transform: perspective(600px) rotateY(18deg) scale(0.82);
        animation: floatLeftMobile 6s ease-in-out infinite;
    }

    .phone-right {
        margin-left: -14px;
        transform: perspective(600px) rotateY(-18deg) scale(0.82);
        animation: floatRightMobile 6s ease-in-out infinite;
    }

    @keyframes floatLeftMobile {
        0%, 100% { transform: perspective(600px) rotateY(18deg) scale(0.82) translateY(0); }
        50% { transform: perspective(600px) rotateY(18deg) scale(0.82) translateY(-5px); }
    }

    @keyframes floatRightMobile {
        0%, 100% { transform: perspective(600px) rotateY(-18deg) scale(0.82) translateY(0); }
        50% { transform: perspective(600px) rotateY(-18deg) scale(0.82) translateY(-5px); }
    }

    .phone-mockup { border-radius: 32px; }
    .phone-inner { border-radius: 30px; }
    .phone-screen { border-radius: 30px; }
    .phone-notch { width: 56px; height: 16px; top: 6px; }
    .phone-notch::before { width: 5px; height: 5px; right: 8px; }
    .phone-status { padding: 8px 14px 0; height: 28px; font-size: 0.4rem; }
    .phone-home { width: 30%; height: 3px; margin: 4px auto 6px; }

    .scroll-indicator { display: none; }
    .scroll-hint { font-size: 0.45rem; }

    /* Navbar mobile adjustments */
    .navbar { top: 8px; left: 10px; right: 10px; padding: 10px 6px; border-radius: 12px; }

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

    .cta-box {
        padding: 48px 28px;
    }

    .feature-stack {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-badge { font-size: 0.7rem; }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
    }

    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.65rem; }

    /* Hide side phones on very small screens */
    .phone-side { display: none; }
    .phone-center { width: 200px; }
    .phone-center .phone-screen,
    .phone-center .interactive-scroll { height: 380px; }

    .section-header h2,
    .why-us-content h2,
    .cta-box h2 {
        font-size: 1.6rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .feature-stack {
        grid-template-columns: 1fr;
    }
}
