/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0046FF;
    --primary-blue-dark: #002A99;
    --primary-blue-medium: #2650BD;
    --primary-blue-light: #5383FF;
    --primary-blue-lighter: #CDDAFF;
    --white: #FFFFFF;
    --black: #111212;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero & Results Wrapper with Gradient */
.hero-results-wrapper {
    position: relative;
    background: linear-gradient(180deg,
          #001a8f 2%,
          #0027d3 10%,
          #1a42f2 16%,
          #2d53f5 24%,
          #4265f7 32%,
          #5677f9 40%,
          #6080f3 48%,
          #7995fc 56%,
          #93affa 64%,
          #a3bffc 72%,
          #b3cef3 78%,
          #e3f0ff 84%,
          #f8fbff 92%,
          #ffffff 100%);
}

/* Pricing to Footer Wrapper with Reversed Gradient */
.pricing-footer-wrapper {
    position: relative;
    background: linear-gradient(180deg,
          #ffffff 0%,
          #f8fbff 8%,
          #e3f0ff 16%,
          #b3cef3 22%,
          #a3bffc 28%,
          #93affa 36%,
          #7995fc 44%,
          #6080f3 52%,
          #5677f9 60%,
          #4265f7 68%,
          #2d53f5 76%,
          #1a42f2 84%,
          #0027d3 90%,
          #001a8f 98%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header - Centered Layout */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.nav-container {
    background: var(--white);
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* WhatsApp Button - Green Shiny Gradient */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero Section - Darker Blue Gradient (Blue top, White bottom) */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Squares */
.hero-bg-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-square {
    position: absolute;
    border-radius: 8px;
    animation: floatFade 8s ease-in-out infinite;
}

@keyframes floatFade {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        opacity: 0.6;
    }
}

/* Individual Square Styles */
.square-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 0s;
    animation-duration: 7s;
}

.square-2 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 15%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.square-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 8%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation-delay: 3s;
    animation-duration: 10s;
}

.square-4 {
    width: 50px;
    height: 50px;
    top: 45%;
    right: 20%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation-delay: 2s;
    animation-duration: 8s;
}

.square-5 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 10%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation-delay: 4s;
    animation-duration: 11s;
}

.square-6 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 25%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation-delay: 5s;
    animation-duration: 9s;
}

.square-7 {
    width: 55px;
    height: 55px;
    top: 50%;
    left: 15%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 1s;
    animation-duration: 7.5s;
}

.square-8 {
    width: 75px;
    height: 75px;
    top: 35%;
    right: 8%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation-delay: 3.5s;
    animation-duration: 10s;
}

.square-9 {
    width: 65px;
    height: 65px;
    top: 80%;
    left: 30%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation-delay: 2.5s;
    animation-duration: 8.5s;
}

.square-10 {
    width: 85px;
    height: 85px;
    top: 10%;
    right: 25%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation-delay: 4.5s;
    animation-duration: 9.5s;
}

/* Trusted Clients */
.trusted-clients {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.clients-avatars {
    height: 44px;
    width: auto;
}

.trusted-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.trusted-stars {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

.trusted-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.title-highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight-text {
    color: var(--white);
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.15em;
    position: relative;
    z-index: 1;
    display: inline-block;
    transform: translateY(-2px);
}

.highlight-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.text-highlight {
    color: var(--white);
    font-weight: 600;
}

/* Primary Button - Shiny White with Blue Text */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

.btn-primary .btn-text {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* Gradient border glow */
.btn-primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
    border-radius: 17px;
    z-index: -2;
    opacity: 0.6;
    filter: blur(8px);
}

/* Inner background */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 14px;
    z-index: -1;
}

/* Shine effect */
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
    background: var(--primary-blue);
}

.btn-primary:hover .btn-text,
.btn-primary:hover .btn-arrow {
    color: var(--white);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary .btn-arrow {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

/* Feature Boxes - Glassmorphism Style */
.feature-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: var(--white);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header {
        width: calc(100% - 32px);
        left: 16px;
        transform: none;
    }

    .nav-container {
        border-radius: 16px;
        padding: 12px 16px;
    }

    .nav-content {
        justify-content: space-between;
        width: 100%;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .trusted-clients {
        flex-direction: column;
        gap: 12px;
    }

    .trusted-info {
        align-items: center;
    }

    .feature-boxes {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-box {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .btn-primary {
        padding: 12px 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .btn-primary {
        padding: 12px 32px;
        font-size: 15px;
    }
}

/* Before/After Section */
.before-after-section {
    padding: 20px 0 30px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-dark {
    font-size: 42px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtext-dark {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.section-subtext-dark strong {
    color: var(--black);
    font-weight: 600;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    display: flex;
    flex-direction: column;
}

.comparison-column:first-child {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px 24px;
}

.comparison-column:last-child {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(0, 70, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.column-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.title-logo {
    height: 28px;
    width: auto;
}

.image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.image-wrapper.highlight-wrapper {
    border: 2px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)) padding-box,
                linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)) border-box;
    box-shadow: 
        0 8px 32px rgba(0, 70, 255, 0.3),
        0 0 20px rgba(0, 70, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.comparison-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--black);
    transition: all 0.2s ease;
}

.point-box.negative {
    background: transparent;
    border: 1px solid rgba(150, 150, 150, 0.5);
}

.point-box.negative .point-icon {
    color: #CC2E24;
}

.point-box.positive {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 70, 255, 0.1);
}

.point-icon {
    font-size: 16px;
    font-weight: 700;
}

.point-box.positive .point-icon {
    color: #34C759;
}

/* Secondary Button (Upgrade profile) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 24px rgba(0, 70, 255, 0.3),
        0 2px 8px rgba(0, 70, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-top: 10px;
    width: 100%;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
    border-radius: 14px;
    z-index: -2;
    opacity: 0.5;
    filter: blur(6px);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 12px;
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 32px rgba(0, 70, 255, 0.4),
        0 4px 12px rgba(0, 70, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary .btn-arrow {
    width: 16px;
    height: 16px;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .column-title {
        font-size: 24px;
    }
    
    .section-title-dark {
        font-size: 32px;
    }
}

/* Portfolio Gallery Section */
.portfolio-gallery {
    padding: 40px 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    padding: 16px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Why Pullr Section */
.why-pullr-section {
    padding: 60px 0 30px;
    background: var(--white);
    position: relative;
}

.why-pullr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(0, 70, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-pullr-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--black);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.why-pullr-subtext {
    font-size: 18px;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.why-pullr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.why-pullr-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(0, 70, 255, 0.05) 0%, rgba(0, 70, 255, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.why-pullr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.why-pullr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 70, 255, 0.2);
}

.why-pullr-card:hover::before {
    opacity: 1;
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.card-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.card-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

/* Reviews Section */
.reviews-section {
    padding: 30px 0;
    background: var(--white);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(0, 70, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.reviews-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.reviews-trust img {
    height: 40px;
}

.reviews-trust-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews-trust-stars {
    height: 16px;
    width: auto;
    max-width: 100px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(3500%) hue-rotate(221deg) brightness(102%) contrast(108%);
}

.reviews-trust-text span {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.reviews-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 70, 255, 0.15);
    border: 1px solid rgba(0, 70, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 70, 255, 0.25);
}

.review-stars {
    height: 16px;
    width: auto;
    margin-bottom: 12px;
    align-self: flex-start;
    filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(3500%) hue-rotate(221deg) brightness(102%) contrast(108%);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-weight: 600;
    color: var(--black);
    font-size: 15px;
    line-height: 1;
}

.review-role {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1;
}

.review-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0 40px;
    position: relative;
}

.pricing-box {
    max-width: 900px;
    margin: 0 auto 48px;
    background: linear-gradient(135deg, #7C4DFF 0%, #5B3EFF 15%, #0046FF 40%, #001BB7 70%, #000D5C 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 62, 255, 0.4);
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pricing-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pricing-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-right h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li::before {
    content: '✓';
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .why-pullr-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .affiliate-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .affiliate-content {
        text-align: center;
    }

    .affiliate-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .why-pullr-title,
    .reviews-title {
        font-size: 36px;
    }

    .pricing-box {
        padding: 60px 24px;
    }

    .pricing-left h2 {
        font-size: 32px;
    }
}

/* Affiliate Section */
.affiliate-box {
    max-width: 900px;
    margin: 0 auto 48px;
    background: linear-gradient(135deg, #FFB347 0%, #FF8C42 50%, #FF7F3E 100%);
    border-radius: 32px;
    padding: 36px 48px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(255, 127, 62, 0.3);
}

.affiliate-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 8s infinite;
}

.affiliate-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.affiliate-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.affiliate-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.affiliate-box p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.affiliate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 70, 255, 0.3);
}

.affiliate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 70, 255, 0.4);
}


/* FAQ Section */
.faq-section {
    padding: 30px 0 30px;
    position: relative;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 20px 0 40px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.2;
}

.footer-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.footer-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1000;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    pointer-events: auto;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Call Widget */
.call-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    pointer-events: none;
}

.call-widget > * {
    pointer-events: auto;
}

.call-widget-content {
    background: var(--white);
    border-radius: 24px;
    width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 16px;
}

.call-widget.active .call-widget-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-body {
    padding: 32px 28px;
}

/* Floating Call Button */
.floating-call-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C4DFF 0%, #5B3EFF 25%, #0046FF 60%, #001BB7 100%);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 70, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 70, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 48px rgba(0, 70, 255, 0.6),
            0 0 40px rgba(0, 70, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 48px rgba(0, 70, 255, 0.5),
        0 0 40px rgba(0, 70, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
    position: absolute;
    transition: all 0.3s ease;
}

.phone-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.arrow-down-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.call-widget.active .phone-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.call-widget.active .arrow-down-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.call-widget.active .floating-call-btn {
    animation: none;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.modal-role {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-subtext {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #7C4DFF 0%, #5B3EFF 25%, #0046FF 60%, #001BB7 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 24px rgba(0, 70, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.modal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modal-cta:hover::before {
    left: 100%;
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 70, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .affiliate-box {
        padding: 32px 24px;
    }

    .affiliate-box h3 {
        font-size: 24px;
    }

    .faq-title {
        font-size: 32px;
    }

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-main-btn {
        padding: 16px 36px;
        font-size: 16px;
    }

    .call-widget {
        bottom: 20px;
        right: 20px;
    }

    .call-widget-content {
        width: calc(100vw - 40px);
        max-width: 360px;
    }

    .widget-body {
        padding: 24px 20px;
    }

    .floating-call-btn {
        width: 56px;
        height: 56px;
    }

    .floating-call-btn svg {
        width: 24px;
        height: 24px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-subtext {
        font-size: 13px;
    }

    .modal-cta {
        font-size: 14px;
        padding: 12px 24px;
    }
}