/*
Theme Name: Ganiga Bandhana
Theme URI: https://ganiga.co.in
Author: Crinnovative Tech
Author URI: https://crinnovative.tech
Description: Premium matrimonial theme for the Ganiga/Teli community. Privacy-first, 2FA verified, caste certified.
Version: 1.0.0
License: Proprietary
License URI: https://ganiga.co.in/license
Text Domain: ganiga-bandhana
Tags: matrimonial, community, ganiga, teli, wedding, marriage

Ganiga Bandhana - Where Ganiga Hearts Unite
*/

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Colors - Blush & Gold */
    --blush-cream: #FDF2F0;
    --soft-rose: #F5E1DD;
    --rose-mist: #E8C4BE;
    --dusty-rose: #B76E79;
    --deep-rose: #8B4557;
    --royal-gold: #C9A96E;
    --light-gold: #E8D5A3;
    --dark-gold: #A67C52;
    --white: #FFFFFF;
    --pearl: #FAFAF8;
    --soft-gray: #F5F3F0;
    --silver: #D4CFC8;
    --stone: #9B958E;
    --charcoal: #3D3632;
    --rich-black: #1A1512;
    --success: #6B9E78;
    --coral: #E8856E;
    --error: #C45B5B;
    --info: #7BA7C4;

    /* Shadows */
    --shadow-subtle: 0 1px 2px rgba(26,21,18,0.04);
    --shadow-sm: 0 2px 8px rgba(26,21,18,0.06);
    --shadow-md: 0 4px 16px rgba(26,21,18,0.08);
    --shadow-lg: 0 8px 32px rgba(26,21,18,0.10);
    --shadow-xl: 0 16px 48px rgba(26,21,18,0.12);
    --shadow-gold: 0 4px 24px rgba(201,169,110,0.25);
    --shadow-rose: 0 4px 24px rgba(183,110,121,0.20);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background-color: var(--blush-cream);
    line-height: 1.65;
}

::selection {
    background-color: var(--royal-gold);
    color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--rich-black);
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.15; font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.2; font-weight: 600; }
h3 { font-size: clamp(28px, 3vw, 36px); line-height: 1.25; font-weight: 500; }
h4 { font-size: clamp(22px, 2.5vw, 24px); line-height: 1.3; font-weight: 500; font-family: 'DM Sans', sans-serif; }

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

/* ============================================
   CONTAINER
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--royal-gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201,169,110,0.35);
}

.btn-rose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--dusty-rose);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-rose:hover {
    background-color: var(--deep-rose);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 2px solid var(--dusty-rose);
    color: var(--dusty-rose);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-ghost:hover {
    background-color: var(--dusty-rose);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.input-field {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--white);
    border: 2px solid var(--rose-mist);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    transition: all var(--duration-fast);
    outline: none;
}

.input-field:focus {
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.input-field::placeholder {
    color: var(--silver);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--duration-normal);
    box-shadow: var(--shadow-sm);
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253,242,240,0.95);
    backdrop-filter: blur(12px);
    transition: all var(--duration-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-subtle);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--rich-black);
}

.site-logo .brand-accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--royal-gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--charcoal);
    transition: color var(--duration-fast);
}

.main-nav a:hover {
    color: var(--dusty-rose);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .login-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--charcoal);
}

.header-actions .login-link:hover {
    color: var(--dusty-rose);
}

.header-actions .btn-gold {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--blush-cream) 0%, var(--soft-rose) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(201,169,110,0.1);
    border-radius: 999px;
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--royal-gold);
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-gold);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .gold {
    color: var(--royal-gold);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 16px 48px rgba(26,21,18,0.12);
}

.search-form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.search-form .form-group {
    flex: 1;
}

.search-form label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 8px;
}

.search-form select,
.search-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--rose-mist);
    border-radius: 8px;
    font-size: 16px;
}

.search-form .btn-gold {
    height: 48px;
    white-space: nowrap;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 64px 0;
    background-color: var(--white);
}

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

.trust-item {
    text-align: center;
    padding: 24px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(201,169,110,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trust-icon svg {
    color: var(--royal-gold);
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--stone);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background-color: var(--blush-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header .gold {
    color: var(--royal-gold);
}

.section-header p {
    font-size: 18px;
    color: var(--stone);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--royal-gold);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold);
}

.step-card .card {
    text-align: center;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--stone);
}

/* ============================================
   FEATURED PROFILES
   ============================================ */
.featured-profiles {
    padding: 80px 0;
    background-color: var(--white);
}

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

.profile-card {
    overflow: hidden;
}

.profile-photo {
    height: 256px;
    background: linear-gradient(135deg, var(--blush-cream) 0%, var(--soft-rose) 100%);
    position: relative;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo .masked {
    filter: blur(20px);
}

.profile-photo .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo .avatar span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--royal-gold);
}

.profile-id {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    background-color: rgba(26,21,18,0.6);
    color: var(--white);
    font-size: 12px;
    border-radius: 4px;
}

.profile-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.profile-info .occupation {
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--stone);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--rose-mist) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 32px;
    line-height: 1.4;
}

.testimonial-author h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--stone);
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    padding: 80px 0;
    background-color: var(--rich-black);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--royal-gold);
    line-height: 1;
}

.stat-item .label {
    font-size: 16px;
    color: var(--silver);
    margin-top: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--dark-gold) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.cta-section .subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.cta-buttons .btn-dark {
    padding: 16px 32px;
    background-color: var(--rich-black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-normal);
}

.cta-buttons .btn-dark:hover {
    background-color: var(--charcoal);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    padding: 16px 32px;
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-normal);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--rich-black);
    color: var(--silver);
    padding: 64px 0 32px;
}

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

.footer-brand .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--stone);
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: var(--stone);
    transition: color var(--duration-fast);
}

.footer-column ul li a:hover {
    color: var(--royal-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(155,149,142,0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--stone);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 64px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--royal-gold);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background-color: var(--royal-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--royal-gold);
    margin: 16px 0;
}

.pricing-card.featured .pricing-amount {
    color: var(--royal-gold);
}

.pricing-card:not(.featured) .pricing-amount {
    color: var(--charcoal);
}

.pricing-features {
    text-align: left;
    margin: 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}

.pricing-features li .check {
    color: var(--success);
}

/* ============================================
   LOGIN/REGISTER PAGE
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.auth-card h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--dusty-rose);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-page {
    padding: 120px 0 64px;
}

.filters-bar {
    background-color: var(--white);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 8px;
    background-color: var(--blush-cream);
    border-radius: 8px;
    padding: 4px;
}

.filter-group button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.filter-group button.active {
    background-color: var(--white);
    color: var(--rich-black);
    box-shadow: var(--shadow-subtle);
}

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

.results-count {
    font-size: 14px;
    color: var(--stone);
}

.results-count strong {
    color: var(--charcoal);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-layout {
    display: flex;
    gap: 32px;
    padding: 120px 0 64px;
}

.dashboard-sidebar {
    width: 256px;
    flex-shrink: 0;
}

.sidebar-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 16px;
    position: sticky;
    top: 100px;
}

.sidebar-user {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(232,196,190,0.2);
    margin-bottom: 16px;
}

.sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.sidebar-avatar span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--royal-gold);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--charcoal);
    transition: background-color var(--duration-fast);
}

.sidebar-nav a:hover {
    background-color: var(--blush-cream);
}

.dashboard-main {
    flex: 1;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    overflow: hidden;
}

.blog-image {
    height: 192px;
    background: linear-gradient(135deg, var(--blush-cream) 0%, var(--soft-rose) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: rgba(201,169,110,0.2);
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(201,169,110,0.1);
    color: var(--dark-gold);
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--silver);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    border: none;
    background: none;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .trust-grid,
    .steps-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .hero-section {
        padding: 120px 0 64px;
    }

    .search-form {
        flex-direction: column;
    }

    .trust-grid,
    .steps-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .profiles-grid,
    .pricing-cards,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .dashboard-layout {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
