/* ========================================
   INNOVATE BEYOND - DESIGN SYSTEM
   ======================================== */

:root {
    /* Brand */
    --red: #d90000;
    --red-dark: #b80000;
    --red-deep: #a80000;
    --red-light: rgba(217, 0, 0, 0.08);
    --red-mid: rgba(217, 0, 0, 0.12);

    /* Neutral */
    --charcoal: #0a0a0a;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-400: #a0a0a0;
    --gray-500: #808080;
    --gray-600: #666666;
    --gray-700: #444444;
    --gray-800: #333333;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-red: 0 8px 24px rgba(217, 0, 0, 0.25);
    --shadow-red-lg: 0 12px 32px rgba(217, 0, 0, 0.35);

    /* Layout */
    --container-max: 1720px;
    --container-pad: 40px;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ========================================
   ANIMATION UTILITIES
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   NAVIGATION
   ======================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width 0.3s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s var(--ease-out-quart);
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-red-lg);
    border-color: var(--red-dark);
}

.nav-cta:hover::before {
    opacity: 1;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out-quart);
    border-radius: 1px;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 999;
    padding: 100px 40px 40px;
    transition: right 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--red);
}

.mobile-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.65) 100%), url('https://innovatebeyond.com.au/wp-content/uploads/2025/07/SurfersParadiseBackground.jpg.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    animation: heroFadeIn 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-rating-google {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--white);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-rating-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-rating-stars {
    color: #f3b300;
    letter-spacing: 1px;
    font-size: 0.88rem;
}

.hero-rating-copy {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 auto 20px;
    color: var(--white);
    max-width: 980px;
    animation: heroFadeIn 0.8s var(--ease-out-expo) 0.35s both;
}


.hero-subtitle {
    font-size: clamp(1.1rem, 1.7vw, 22px);
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 32px;
    line-height: 1.45;
    font-weight: 400;
    max-width: 800px;
    animation: heroFadeIn 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    animation: heroFadeIn 0.8s var(--ease-out-expo) 0.65s both;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s var(--ease-out-quart);
    border: 2px solid var(--red);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s var(--ease-out-quart);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: heroFadeIn 0.8s var(--ease-out-expo) 0.8s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
}

.feature-icon {
    font-size: 1rem;
    color: var(--red);
    width: 18px;
    text-align: center;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

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

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    padding: 48px 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-label-text {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-logo {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 0 28px;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.trust-logo:hover {
    color: var(--white);
}

.trust-logo:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.5;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff 0%, var(--gray-50) 100%);
}

.problem-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 80px;
    align-items: start;
}

.problem-eyebrow {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-style: italic;
    margin: -4px 0 16px;
    font-weight: 500;
}

.problem-left p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.75;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 32px 0 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 600;
}

.problem-list li::before {
    content: '\2714';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.problem-cta {
    display: inline-flex;
}

/* Guarantee Card */
.guarantee-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 0, 0, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.05);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-deep), var(--red));
}

.guarantee-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--black);
    text-align: center;
}

.guarantee-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.guarantee-list li {
    display: flex;
    gap: 14px;
    background: var(--red-light);
    border-radius: 14px;
    padding: 16px;
    transition: all 0.25s ease;
}

.guarantee-list li:hover {
    background: var(--red-mid);
    transform: translateY(-2px);
}

.guarantee-list .icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.85rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.guarantee-list li:hover .icon {
    transform: scale(1.1);
}

.guarantee-list h5 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
    font-size: 0.92rem;
    line-height: 1.3;
}

.guarantee-list p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.guarantee-quote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(217, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-stars {
    color: #f3b300;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.guarantee-quote blockquote {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 10px;
    max-width: 520px;
}

.guarantee-quote cite {
    display: block;
    color: var(--gray-600);
    font-style: normal;
    font-size: 0.84rem;
    margin-bottom: 16px;
}

.quote-btn {
    width: auto;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.88rem;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
    padding: 120px 0;
    background: var(--gray-100);
}

.services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 36px 32px;
    transition: all 0.35s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--red-light), transparent);
    transition: height 0.35s var(--ease-out-quart);
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--red-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--red);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.service-card > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '\2714';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
}

/* ========================================
   PROCESS
   ======================================== */

.process {
    padding: 120px 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.process-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

.process-step {
    position: relative;
    padding: 36px 32px;
    background: var(--gray-100);
    border-radius: 14px;
    transition: all 0.35s var(--ease-out-quart);
    border: 1px solid transparent;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--gray-200);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: 120px 0 140px;
    background: var(--charcoal);
    position: relative;
}

.testimonials-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.testimonials-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

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

.testimonials-grid,
.slider-container {
    display: block;
    overflow: visible;
    padding: 6px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 36px 32px;
    transition: all 0.35s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(217,0,0,0.08), transparent);
    transition: height 0.35s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 10;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}

.testimonial-stars {
    color: #e11d1d;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red-deep), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.author-info h5 {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio {
    padding: 120px 0;
    background: var(--gray-100);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
}

.portfolio-header p {
    color: var(--gray-600);
    max-width: 720px;
    margin-top: 12px;
}

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

.portfolio-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-quart);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.portfolio-mockup {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.portfolio-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s var(--ease-out-quart);
}

.portfolio-card:hover .portfolio-screenshot {
    transform: scale(1.03);
}

.portfolio-mockup-body {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
}

.portfolio-mockup-body span {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.portfolio-mockup-body small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.portfolio-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    z-index: 2;
}

.portfolio-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Portfolio overlay and hover button removed per request */

/* ========================================
   FAQ
   ======================================== */

.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.faq-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.open {
    border-color: rgba(217, 0, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    transition: color 0.2s ease;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
    color: var(--gray-400);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-footer {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
}

.faq-footer p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-footer a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-footer a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

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

.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto 40px;
}

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

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

.cta .btn-primary:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 80px 0 40px;
    background: var(--charcoal);
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

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

.footer-brand .logo img {
    height: 40px;
    width: auto;
}

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

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

.footer-column h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
}

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

.footer-column a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s var(--ease-out-expo);
}

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

.footer-column a:hover::after {
    width: 100%;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--ease-out-quart);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

    .trust-logos {
        gap: 12px 0;
    }

    .trust-logo {
        padding: 0 20px;
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 40px;
    }

    .problem-content {
        gap: 56px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-pad: 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 0 48px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .trust-logos {
        gap: 8px 0;
    }

    .trust-logo {
        padding: 0 16px;
        font-size: 0.85rem;
    }

    .trust-logo:not(:last-child)::after {
        display: none;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .guarantee-list {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header,
    .portfolio-header {
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

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

    .faq-question {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   TESTIMONIAL SLIDER
   ======================================== */

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-container {
    overflow: hidden;
    flex: 1;
    border-radius: 14px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s var(--ease-out-expo);
}

.testimonial-slide {
    min-width: calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}

.testimonial-slide .testimonial-card {
    height: 100%;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.google-review-link {
    margin-left: auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.google-review-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.google-icon {
    display: block;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .slider-arrow {
        display: none;
    }

    .slider-wrapper {
        gap: 0;
    }

    .testimonial-slide {
        padding: 0;
    }
}
