/* ==========================================
   Forendi Landing Page - Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Colors - Forendi Purple Theme */
    --primary: #4A2882;
    --primary-light: #6B3FA0;
    --primary-dark: #341B5E;
    --primary-glow: rgba(74, 40, 130, 0.4);

    --secondary: #1E1E2E;
    --accent: #A855F7;
    --accent-light: #C084FC;

    /* Neutrals */
    --bg-dark: #0A0A0F;
    --bg-card: #12121A;
    --bg-elevated: #1A1A24;

    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A2882 0%, #6B3FA0 50%, #A855F7 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(74, 40, 130, 0.3) 0%, transparent 70%);
    --gradient-card: linear-gradient(135deg, rgba(74, 40, 130, 0.1) 0%, rgba(26, 26, 36, 0.5) 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Glass Effect */
.glass {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-normal);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.logo-full {
    height: 44px;
    width: auto;
    border-radius: var(--radius-md);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 40, 130, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 40, 130, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    filter: blur(100px);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(74, 40, 130, 0.2);
    border: 1px solid rgba(74, 40, 130, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.badge-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
    margin-top: -20px;
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 100px -50px var(--primary-glow);
    animation: float 6s ease-in-out infinite;
    min-width: 450px;
    max-width: 525px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-dots span:first-child {
    background: #FF5F56;
}

.preview-dots span:nth-child(2) {
    background: #FFBD2E;
}

.preview-dots span:last-child {
    background: #27CA40;
}

.preview-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-content {
    display: flex;
    padding: 0;
    gap: 0;
    min-height: 315px;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 120px;
    padding: 12px 9px;
    background: var(--bg-elevated);
    border-right: 1px solid var(--border);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-item svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.sidebar-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.preview-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 12px;
}

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

.preview-page-header h3 {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.preview-btn {
    padding: 4px 8px;
    font-size: 0.5rem;
    font-weight: 500;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.preview-btn:hover {
    background: rgba(168, 85, 247, 0.1);
}

.preview-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 8px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 8px 12px;
    background: rgba(74, 40, 130, 0.2);
    border-bottom: 1px solid var(--border);
}

.table-header span {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.table-row:last-child {
    border-bottom: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.avatar-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info span {
    font-size: 0.7rem;
    color: var(--text-primary);
}

.role-badge {
    padding: 3px 8px;
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.role-badge.admin {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent);
}

.role-badge.analyst {
    background: rgba(34, 211, 238, 0.2);
    color: #22D3EE;
}

.role-badge.forensic {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: 50px;
}

.status-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.status-badge.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.status-badge.online::before {
    background: #22C55E;
}

.status-badge.offline {
    background: rgba(113, 113, 122, 0.2);
    color: var(--text-muted);
}

.status-badge.offline::before {
    background: var(--text-muted);
}

/* Tab Content */
.tab-content {
    display: none;
    flex-direction: column;
    height: 100%;
}

.tab-content.active {
    display: flex;
}

/* Incident & Case Info */
.incident-info span,
.case-info span {
    font-size: 0.7rem;
    color: var(--text-primary);
}

/* Severity Badges */
.severity-badge {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.severity-badge.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.severity-badge.high {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

.severity-badge.medium {
    background: rgba(234, 179, 8, 0.2);
    color: #EAB308;
}

/* Incident Status */
.incident-status {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.incident-status.open {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.incident-status.investigating {
    background: rgba(234, 179, 8, 0.2);
    color: #EAB308;
}

.incident-status.resolved {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

/* Case Types */
.case-type {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.case-type.forensic {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent);
}

.case-type.investigation {
    background: rgba(34, 211, 238, 0.2);
    color: #22D3EE;
}

.case-type.breach {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* Case Status */
.case-status {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.case-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.case-status.closed {
    background: rgba(113, 113, 122, 0.2);
    color: var(--text-muted);
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

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

.feature-card {
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-text {
    max-width: 540px;
}

.benefits-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.benefits-text .section-subtitle {
    margin: 0 0 40px 0;
    text-align: left;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefits-list p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefits-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefits-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefits-card:first-child {
    grid-column: span 2;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

/* ==========================================
   Platform Section
   ========================================== */
.platform {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

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

.platform-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.platform-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.platform-card-wide {
    grid-column: span 2;
}

.platform-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.platform-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.platform-tech {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(168, 85, 247, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.platform-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-info .section-subtitle {
    margin: 0 0 40px 0;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-form {
    padding: 40px;
    border-radius: var(--radius-xl);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.footer-column a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 24px;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
    }

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

    .benefits-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .platform-card {
        flex-direction: column;
    }

    .benefits-visual {
        grid-template-columns: 1fr;
    }

    .benefits-card:first-child {
        grid-column: span 1;
    }

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

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}