:root {
    /* Duotone Color Palette */
    --primary: #6366f1;       /* Indigo */
    --primary-dark: #4f46e5;
    --secondary: #3b82f6;     /* Blue */
    --accent: #f43f5e;        /* Rose */
    
    --primary-light: rgba(99, 102, 241, 0.1);
    --secondary-light: rgba(59, 130, 246, 0.1);
    
    --dark: #0f172a;          /* Slate 900 */
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --light: #ffffff;
    --bg-light: #f9fafb;
    
    --gradient-duo: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-soft: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --radius-sm: 0.375rem;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    transition: var(--transition);
}

.logo span {
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-duo);
    color: white;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.logo-nest {
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-by {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.logo-kashmir {
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--gray-600);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    gap: 0.5rem;
    width: 240px;
}

.search-box i {
    color: var(--gray-400);
    width: 18px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-icons i {
    position: absolute;
    color: var(--gray-200);
    opacity: 0.5;
    width: 40px;
    height: 40px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.2;
    animation: blobMove 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    top: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(100px, 150px) rotate(120deg) scale(1.2); }
    66% { transform: translate(-50px, 100px) rotate(240deg) scale(0.8); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08);
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.1;
}

.btn-primary {
    background: var(--gradient-duo);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.gradient-text {
    background: var(--gradient-duo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delayed {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-trust {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust i {
    width: 18px;
    color: var(--secondary);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sections Common */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

/* Tool Cards */
.tools-grid, .all-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.5s ease backwards;
}

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

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.9);
}


.tool-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tool-card.featured {
    border-top: 4px solid var(--primary);
}

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tool-icon i {
    width: 32px;
    height: 32px;
}

.resume-icon { background: rgba(59, 130, 246, 0.1); color: var(--primary); }
.blog-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.pdf-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.image-icon { background: rgba(16, 185, 129, 0.1); color: var(--secondary); }
.dev-icon { background: rgba(31, 41, 55, 0.1); color: var(--gray-900); }
.prod-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tool-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.tool-link {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-link i {
    width: 18px;
    transition: var(--transition);
}

.tool-card:hover .tool-link i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 4rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    background: var(--light);
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Tool of the Day */
.tool-of-the-day {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px dashed var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.tod-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.tod-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.tod-content i {
    color: var(--primary);
}

.tod-content span {
    flex: 1;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Why ToolNest Section */
.why-toolnest {
    background: var(--dark);
    color: var(--light);
    border-radius: var(--radius-lg);
    margin: 4rem 1.5rem;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 4rem;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefit-list {
    margin-top: 2rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--gray-400);
}

.benefit-list i {
    color: var(--secondary);
    width: 24px;
}

.benefit-list strong {
    color: var(--light);
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works */
.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-duo);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.fab-main:hover {
    transform: scale(1.1) rotate(15deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 220px;
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    animation: slideUp 0.3s ease;
}

.fab-menu.active {
    display: flex;
}

.fab-menu h4 {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.fab-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: 0.2s;
}

.fab-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
}

.step h4 {
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.step-divider {
    height: 2px;
    background: var(--gray-200);
    flex: 0.5;
    margin-top: -3rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.user-info strong {
    display: block;
    font-size: 1rem;
}

.user-info span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-thumb {
    height: 200px;
    width: 100%;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.blog-content a {
    color: var(--primary);
    font-weight: 700;
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    color: var(--light);
    flex: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--gray-400);
}

.social-icons a:hover {
    color: var(--light);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Tool Interface Containers */
.tool-ui-container {
    padding: 1rem 0;
}

.tool-ui-container textarea {
    resize: vertical;
}

.tool-ui-container .btn {
    width: 100%;
}

@media (min-width: 600px) {
    .tool-ui-container .btn {
        width: auto;
    }
}

.pdf-ui {
    border-color: var(--primary) !important;
    background: rgba(59, 130, 246, 0.02);
}

.text-tool-ui textarea:focus, .json-tool-ui textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

#pdf-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.tool-modal-content {
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .header-actions .search-box, .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .steps-flow { flex-direction: column; }
    .step-divider { display: none; }
    
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-newsletter { grid-column: span 1; }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Heroes (About, Contact, Blog) */
.page-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(99, 102, 241, 0.03));
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Pills */
.feature-pills .badge {
    background: white !important;
    box-shadow: var(--shadow-sm);
}

/* Form & Stepper Styles */
.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.step-pill {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: var(--gray-600);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step-pill.active {
    background: var(--primary);
    color: var(--light);
}

/* AdSense Floating Placeholders */
.ad-placeholder {
    background: rgba(243, 244, 246, 0.95);
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 900;
    transition: var(--transition);
    overflow: hidden;
    pointer-events: auto;
}

.ad-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.ad-float-left {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    border-radius: var(--radius);
}

.ad-float-right {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    border-radius: var(--radius);
}

.ad-float-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 728px;
    height: 90px;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}

.ad-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    color: #666;
}

@media (max-width: 1400px) {
    .ad-float-left, .ad-float-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .ad-float-bottom {
        width: 100%;
        height: 60px;
        font-size: 0.6rem;
    }
}
