@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --primary: hsl(221 83% 53%);
    --primary-foreground: hsl(0 0% 100%);
    --accent: hsl(189 94% 43%);
    --foreground: hsl(222 47% 11%);
    --muted-foreground: hsl(215 16% 47%);
    --border: hsl(214 32% 91%);
    --background: hsl(0 0% 100%);
    --secondary: hsl(210 40% 96%);
    --success: hsl(142 76% 36%);
    --warning: hsl(38 92% 50%);
    --destructive: hsl(0 84% 60%);
    
    --gradient-primary: linear-gradient(135deg, hsl(221 83% 53%), hsl(189 94% 43%));
    --gradient-hero: linear-gradient(180deg, hsl(221 100% 97%), hsl(0 0% 100%));
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-rainbow: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: var(--background);
}

/* Navbar */
.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-content {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.navbar-logo-icon {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--gradient-primary);
}

.navbar-logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.navbar-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: var(--foreground);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-navbar {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btn-navbar-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-navbar-ghost:hover {
    background: var(--secondary);
}

.btn-navbar-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 8px -2px hsl(221 83% 53% / 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-navbar-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px hsl(221 83% 53% / 0.3);
}

.btn-navbar-primary i {
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 1rem;
}

@media (min-width: 1024px) {
    .hero-section-new {
        padding: 8rem 1rem;
    }
}

.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.animated-bg.aurora {
    background: linear-gradient(180deg, hsl(221 100% 97%), hsl(0 0% 100%));
}

.animated-bg.gradient {
    background: linear-gradient(180deg, hsl(210 40% 96%), hsl(0 0% 100%));
}

.animated-bg.mesh {
    background: radial-gradient(circle at 20% 50%, hsl(221 83% 53% / 0.05), transparent 50%),
                radial-gradient(circle at 80% 80%, hsl(189 94% 43% / 0.05), transparent 50%);
}

.animated-bg.orbs {
    background: radial-gradient(circle at 30% 30%, hsl(221 83% 53% / 0.1), transparent 50%),
                radial-gradient(circle at 70% 70%, hsl(189 94% 43% / 0.1), transparent 50%);
}

.particle-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0,0,0,0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0,0,0,0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0,0,0,0.1), transparent);
    background-size: 200px 200px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: hsl(221 83% 53% / 0.2);
    animation-duration: 8s;
}

.orb-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 20rem;
    height: 20rem;
    background: hsl(189 94% 43% / 0.2);
    animation-duration: 10s;
    animation-delay: 1s;
}

@keyframes orbFloat {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.2) translate(20px, -20px); opacity: 0.5; }
}

.hero-container-new {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content-new {
    max-width: 6xl;
    margin: 0 auto;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: hsl(142 76% 36% / 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(142 76% 36% / 0.2);
    box-shadow: 0 4px 12px -2px hsl(142 76% 36% / 0.1);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(142 76% 36%);
}

.hero-badge-new i {
    color: hsl(142 76% 36%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title-new {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title-new {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-new {
        font-size: 3.25rem;
    }
}

@media (min-width: 1280px) {
    .hero-title-new {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text.ocean {
    background-image: var(--gradient-ocean);
}

.gradient-text-primary {
    background-image: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text.rainbow {
    background-image: var(--gradient-rainbow);
}

.hero-subheadline {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.hero-subtitle-1 {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .hero-subtitle-1 {
        font-size: 1.125rem;
    }
}

.hero-subtitle-2 {
    font-size: 1rem;
    color: var(--foreground);
    font-weight: 500;
}

@media (min-width: 640px) {
    .hero-subtitle-2 {
        font-size: 1.125rem;
    }
}

.hero-actions-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-actions-new {
        flex-direction: row;
    }
}

.shine-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px -2px hsl(221 83% 53% / 0.3);
    position: relative;
    overflow: hidden;
}

.shine-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.shine-button:hover::before {
    left: 100%;
}

.shine-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -2px hsl(221 83% 53% / 0.4);
}

.shine-button i:last-child {
    transition: transform 0.3s;
}

.shine-button:hover i:last-child {
    transform: translateX(4px);
}

.btn-hero-outline-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-outline-new:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
}

.hero-urgency {
    margin-top: 1rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(221 83% 53% / 0.1);
    border: 1px solid hsl(221 83% 53% / 0.2);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.urgency-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.urgency-subtext {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--muted-foreground);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    opacity: 0.3;
}

.mouse-wheel {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(1rem); }
}

/* Trust Badges */
.trust-badges-section {
    padding: 2rem 1rem;
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-badges-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge-item i {
    color: var(--primary);
}

/* Problem Section */
.problem-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(180deg, var(--secondary), var(--background));
}

.problem-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.problem-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 3rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .problem-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .problem-title {
        font-size: 3rem;
    }
}

.text-destructive {
    color: var(--destructive);
}

.problem-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: hsl(0 84% 60% / 0.05);
    border-radius: 1rem;
    border: 1px solid hsl(0 84% 60% / 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateX(0.25rem) scale(1.02);
    border-color: hsl(0 84% 60% / 0.4);
}

.problem-item i {
    color: var(--destructive);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.problem-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
}

.problem-conclusion {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (min-width: 640px) {
    .problem-conclusion {
        font-size: 1.25rem;
    }
}

.font-bold {
    font-weight: 700;
    color: var(--foreground);
}

/* Repositioning Section */
.repositioning-section {
    padding: 6rem 1rem;
    position: relative;
    text-align: center;
}

.repositioning-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.repositioning-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px hsl(221 83% 53% / 0.3);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.repositioning-icon i {
    font-size: 2.5rem;
    color: white;
}

.repositioning-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .repositioning-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .repositioning-title {
        font-size: 3rem;
    }
}

.repositioning-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .repositioning-description {
        font-size: 1.25rem;
    }
}

.font-semibold {
    font-weight: 600;
    color: var(--foreground);
}

/* Framework Section */
.framework-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(180deg, hsl(210 40% 96% / 0.3), var(--background));
}

.framework-container {
    max-width: 1280px;
    margin: 0 auto;
}

.framework-header {
    text-align: center;
    margin-bottom: 4rem;
}

.framework-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(221 83% 53% / 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.framework-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .framework-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .framework-title {
        font-size: 3rem;
    }
}

.framework-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.framework-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .framework-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glow-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -4px hsl(221 83% 53% / 0.2);
}

.glow-card.success::before {
    background: linear-gradient(135deg, var(--success), hsl(142 76% 36%));
}

.glow-card.warning::before {
    background: linear-gradient(135deg, var(--warning), hsl(38 92% 50%));
}

.framework-card-content {
    padding: 2rem;
    text-align: center;
}

.framework-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(221 83% 53% / 0.2), hsl(221 83% 53% / 0.05));
    border: 1px solid hsl(221 83% 53% / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.glow-card:hover .framework-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.framework-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
}

.framework-step {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsl(221 83% 53% / 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.framework-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.framework-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.framework-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.glow-card:hover .framework-list li {
    color: var(--foreground);
}

.framework-list i {
    color: var(--success);
    font-size: 1rem;
}

.framework-list i.fa-clock {
    color: var(--warning);
}

/* Industries Section */
.industries-section {
    padding: 6rem 1rem;
    position: relative;
}

.industries-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .industries-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .industries-title {
        font-size: 3rem;
    }
}

.industries-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.industries-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(221 83% 53% / 0.1), hsl(189 94% 43% / 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: hsl(221 83% 53% / 0.3);
    box-shadow: 0 8px 24px -4px hsl(221 83% 53% / 0.1);
}

.industry-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(221 83% 53% / 0.2), hsl(221 83% 53% / 0.05));
    border: 1px solid hsl(221 83% 53% / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.industry-card:hover .industry-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.industry-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary);
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.industry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.industry-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.industry-card:hover .industry-list li {
    color: var(--foreground);
}

.industry-list i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Core Features Section */
.core-features-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(180deg, hsl(210 40% 96% / 0.3), var(--background));
}

.core-features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.core-features-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 4rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .core-features-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .core-features-title {
        font-size: 3rem;
    }
}

.core-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .core-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.core-feature-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s;
}

.core-feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: hsl(221 83% 53% / 0.3);
    box-shadow: 0 8px 24px -4px hsl(221 83% 53% / 0.1);
}

.core-feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.core-feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.core-feature-icon.purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.core-feature-icon.orange {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.core-feature-icon.green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.core-feature-card:hover .core-feature-icon {
    transform: rotate(-5deg);
}

.core-feature-icon i {
    font-size: 2rem;
    color: white;
}

.core-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.core-feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* AI Features Section */
.ai-features-section {
    padding: 6rem 1rem;
    position: relative;
}

.ai-features-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.ai-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(221 83% 53% / 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.ai-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .ai-features-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .ai-features-title {
        font-size: 3rem;
    }
}

.ai-features-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.ai-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ai-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ai-feature-card-simple {
    background: hsl(142 76% 36% / 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.ai-feature-card-simple:last-child {
    background: hsl(38 92% 50% / 0.1);
}

.ai-feature-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.1);
}

.ai-feature-icon-simple {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.ai-feature-icon-simple.green {
    background: hsl(142 76% 36% / 0.1);
    border-color: hsl(142 76% 36%);
}

.ai-feature-icon-simple.yellow {
    background: hsl(38 92% 50% / 0.1);
    border-color: hsl(38 92% 50%);
}

.ai-feature-icon-simple i {
    font-size: 1.5rem;
}

.ai-feature-icon-simple.green i {
    color: hsl(142 76% 36%);
}

.ai-feature-icon-simple.yellow i {
    color: hsl(38 92% 50%);
}

.ai-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.ai-feature-desc {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ai-feature-note {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 1rem;
    position: relative;
}

.pricing-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-badge-launch {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: hsl(0 84% 60% / 0.1);
    color: var(--destructive);
    border: 1px solid hsl(0 84% 60% / 0.2);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.1);
    animation: scaleIn 0.5s ease-out;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .pricing-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-title {
        font-size: 3rem;
    }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    min-width: 3rem;
    text-align: center;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.pricing-card {
    position: relative;
    border: 2px solid var(--primary);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -8px hsl(221 83% 53% / 0.2);
    overflow: hidden;
    margin-bottom: 2rem;
}

.pricing-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.375rem;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.pricing-card-content {
    padding: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .pricing-card-content {
        padding: 3rem;
    }
}

.pricing-price-section {
    margin-bottom: 2.5rem;
}

.pricing-old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    opacity: 0.5;
}

.discount-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--destructive);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.1);
}

.pricing-new-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 640px) {
    .new-price {
        font-size: 4rem;
    }
}

.price-period {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.pricing-features-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .pricing-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-feature-item i {
    color: var(--success);
    font-size: 1rem;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pricing-cta {
        width: auto;
    }
}

.pricing-footer {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-scarcity {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scarcity-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.scarcity-dot.success {
    background: var(--success);
}

.scarcity-dot.danger {
    background: var(--destructive);
}

.scarcity-number {
    font-weight: 700;
    color: var(--primary);
}

.scarcity-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.scarcity-text-bold {
    font-weight: 700;
    color: var(--destructive);
    font-size: 0.875rem;
}

.scarcity-divider {
    width: 1px;
    height: 1rem;
    background: var(--border);
}

/* Emotional Section */
.emotional-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(180deg, hsl(210 40% 96% / 0.3), var(--background));
}

.emotional-container {
    max-width: 64rem;
    margin: 0 auto;
}

.emotional-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 4rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .emotional-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .emotional-title {
        font-size: 3rem;
    }
}

.emotional-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .emotional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.emotional-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.emotional-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: hsl(221 83% 53% / 0.3);
    box-shadow: 0 8px 24px -4px hsl(221 83% 53% / 0.1);
}

.emotional-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.emotional-card:hover .emotional-icon {
    transform: rotate(-5deg);
}

.emotional-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.emotional-icon.purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.emotional-icon.red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.emotional-icon.green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.emotional-icon i {
    font-size: 1.75rem;
    color: white;
}

.emotional-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.emotional-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.emotional-conclusion {
    text-align: center;
    font-size: 1.125rem;
    color: var(--foreground);
    font-weight: 500;
}

@media (min-width: 640px) {
    .emotional-conclusion {
        font-size: 1.25rem;
    }
}

/* Impact Stats Section */
.impact-stats-section {
    padding: 6rem 1rem;
    position: relative;
}

.impact-stats-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.impact-stats-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 4rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .impact-stats-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .impact-stats-title {
        font-size: 3rem;
    }
}

.impact-stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .impact-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-stat-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.impact-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(2rem);
}

.impact-stat-card:hover::before {
    opacity: 0.1;
}

.impact-stat-card:hover {
    transform: translateY(-0.625rem) scale(1.02);
    border-color: hsl(221 83% 53% / 0.3);
    box-shadow: 0 20px 40px -8px hsl(221 83% 53% / 0.2);
}

.impact-stat-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.impact-stat-card:hover .impact-stat-icon {
    transform: rotate(360deg);
}

.impact-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.impact-stat-icon.purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.impact-stat-icon.orange {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.impact-stat-icon i {
    font-size: 2.5rem;
    color: white;
}

.impact-stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-suffix {
    font-size: 3rem;
}

.impact-stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.impact-stat-desc {
    color: var(--muted-foreground);
}

/* Risk Reversal Section */
.risk-reversal-section {
    padding: 4rem 1rem;
    position: relative;
    background: linear-gradient(90deg, hsl(142 76% 36% / 0.05), hsl(142 76% 36% / 0.1), hsl(142 76% 36% / 0.05));
    border-top: 1px solid hsl(142 76% 36% / 0.2);
    border-bottom: 1px solid hsl(142 76% 36% / 0.2);
}

.risk-reversal-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .risk-reversal-container {
        gap: 2.5rem;
    }
}

.risk-reversal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(142 76% 36% / 0.1);
    border: 1px solid hsl(142 76% 36% / 0.2);
    transition: all 0.3s;
}

.risk-reversal-item:hover {
    transform: scale(1.05);
}

.risk-reversal-item i {
    color: var(--success);
    font-size: 1.25rem;
}

.risk-reversal-item span {
    font-weight: 500;
    color: var(--success);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 1rem;
    position: relative;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-quote-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.3;
    animation: scaleIn 0.5s ease-out;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-title {
        font-size: 3rem;
    }
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-0.625rem);
    border-color: hsl(221 83% 53% / 0.3);
    box-shadow: 0 20px 40px -8px hsl(221 83% 53% / 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsl(221 83% 53% / 0.05);
    color: var(--primary);
    border: 1px solid hsl(221 83% 53% / 0.2);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(180deg, hsl(210 40% 96% / 0.3), var(--background));
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 4rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .faq-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 3rem;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: hsl(221 83% 53% / 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Lead Capture Section */
.lead-capture-section {
    padding: 6rem 1rem;
    position: relative;
}

.lead-capture-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.lead-capture-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lead-capture-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .lead-capture-title {
        font-size: 2.5rem;
    }
}

.lead-capture-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.lead-capture-form {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lead-capture-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .form-group:nth-child(1),
    .form-group:nth-child(2) {
        grid-column: span 1;
    }
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
}

.form-group:last-of-type {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--foreground);
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(221 83% 53% / 0.1);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 1rem;
    position: relative;
    text-align: center;
}

.final-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .final-cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

.final-cta-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .final-cta-description {
        font-size: 1.25rem;
    }
}

.final-cta-button {
    margin-bottom: 2rem;
}

.final-cta-footer {
    color: var(--muted-foreground);
}

/* Footer */
.footer-new {
    padding: 4rem 1rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--secondary), transparent);
}

.footer-container-new {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon-new {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px hsl(221 83% 53% / 0.3);
}

.footer-logo-icon-new i {
    font-size: 1.5rem;
    color: white;
}

.footer-logo-text-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px -2px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float i {
        font-size: 1.25rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-1,
    .hero-subtitle-2 {
        font-size: 1rem;
    }
    
    .shine-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-card-content {
        padding: 1.5rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
}
