/* ========================================
   EmployeesClock Design System (Non-Responsive)
   ======================================== */

:root {
    /* Colors */
    --primary-color: #FF621A;
    --primary-hover: #e55616;
    --secondary-color: #1285C8;
    --text-heading: #262626;
    --text-body: #515151;
    --bg-surface: #ffffff;
    --bg-surface-alt: #f8f9fa;
    --border-color: #e0e0e0;

    /* Design Tokens (Unified) */
    --p-orange-50: #fff7ed;
    --p-orange-100: #ffedd5;
    --p-orange-600: #ea580c;
    --p-blue-50: #eff6ff;
    --p-blue-100: #dbeafe;
    --p-blue-700: #0e6ca3;
    --p-gray-50: #f9fafb;
    --p-gray-100: #f3f4f6;
    --p-gray-200: #e5e7eb;
    --p-enterprise-blue: #0f172a;
    --grad-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --grad-soft: linear-gradient(135deg, #fff7ed 0%, #eff6ff 100%);
    --p-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --p-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --p-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

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

    /* Spacing */
    --radius-lg: 12px;
    --radius-md: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-normal: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-body);
    line-height: 1.5;
    background-color: var(--bg-surface);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 105%;
    display: block;
}

.block-img {
    max-width: 50%;
    display: block;
}

.container {

    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

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

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

/* Header & Nav */
.site-header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    /* Use margins for more flexible alignment */
    align-items: center;
    height: 80px;
}

.logo-link {
    margin-right: auto;
    /* Push navigation to the far right */
}

.logo-img {
    height: 45px;
    width: auto;
}

/* Target the nav element inside container to handle layout */
.nav-container nav {
    margin-left: auto;
    /* Push this and subsequent content to the right */
    margin-right: 4rem;
    /* Add space between menu and language selector */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    /* Reduced gap to prevent overlap on smaller desktop screens */
}

.nav-link {
    font-weight: 500;
    color: var(--text-heading);
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-only-nav-item {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.0rem;
}

.logo-headerText {
    font-size: 2rem;
    /* Slightly smaller logo text on desktop to save space */
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: -1.5px;
}

.logo-headerText span {
    color: var(--primary-color);
}

/* Mobile Menu Button - Hidden on Desktop */
/* Mobile Controls (Hidden on Desktop) */
.mobile-controls {
    display: none;
    align-items: center;
}

/* Mobile Menu Button - part of mobile-controls */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 10px;
    transition: var(--transition-normal);
}

/* Responsive Header */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-container nav {
        display: contents;
    }

    .mobile-controls {
        display: flex;
        align-items: center;
    }

    .logo-headerText {
        font-size: 1.5rem;
    }

    /* Ensure CTA in mobile controls is visible */
    .mobile-controls .btn {
        display: inline-block !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-normal);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-container .btn,
    .language-selector,
    .desktop-only {
        display: none !important;
    }

    .mobile-only-nav-item {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 1.5rem;
    }

    .nav-links .btn {
        display: inline-block !important;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }

    .mobile-lang-selector {
        display: flex;
        justify-content: center;
        gap: 1rem;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .mobile-lang-selector a {
        color: var(--text-heading);
    }

    .mobile-lang-selector a.active {
        color: var(--primary-color);
    }

    /* Hamburger Animation to 'X' */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-body);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-surface-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(253, 129, 18, 0.35) 0px 8px 25px;
    border-bottom-color: var(--primary-color);
}

.feature-icon-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* PTO Section */
.pto-section {
    padding: 6rem 0;
}

.pto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pto-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pto-description {
    text-align: justify;
    margin-bottom: 2rem;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-surface-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-body);
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Platforms Section */
.platforms-section {
    padding: 4rem 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    background: white;
    text-align: center;
}


.platforms-header {
    margin-bottom: 3.5rem;
}

.logo-stylized {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.logo-stylized span {
    color: var(--primary-color);
}

.platforms-header p {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    margin-top: 0.5rem;

}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.platform-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-heading);
    line-height: 1.2;
}

.platform-text span {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Footer Improvements */
.site-footer {
    padding: 6rem 0 3rem;
    background: #fafafa;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col {
    text-align: left;
}

.footer-heading {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

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

.footer-links a {
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
}

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

.footer-contact-col {
    grid-column: span 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-normal);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 98, 26, 0.1);
}

.form-submit-btn {
    align-self: flex-start;
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.footer-social-section {
    text-align: center;
    margin-bottom: 6rem;
}

.footer-social-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #333;
}

.footer-social-section p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.social-icons-circular {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.social-icon-circle {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.15rem;
    transition: var(--transition-normal);
    background: white;
}

.social-icon-circle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #eeeeee;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-left {
    text-align: left;
    font-size: 0.95rem;
    color: #777;
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-center {
    text-align: center;
    font-size: 0.95rem;
    color: #777;
}

.footer-bottom-right {
    text-align: right;
    font-size: 0.95rem;
    padding-right: 80px;
    /* Space for chatbot icon */
}

.footer-bottom-right a {
    margin-left: 2rem;
    color: #777;
    font-weight: 500;
}

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

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.form-status.success {
    display: block;
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.heart {
    color: #f04e23;
    font-size: 1.1rem;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.privacy-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-body);
}

.privacy-text ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.privacy-text li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
}

/* ========================================
   Responsive Media Queries
   ======================================== */

/* Tablets & Small Laptops (up to 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

/* Mobile & Tablets (up to 768px) */
@media (max-width: 992px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Features Grid - 2 columns for tablets */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-header h2 {
        font-size: 2rem;
    }

    /* PTO Section */
    .pto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* About Us Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
        text-align: justify;
    }

    .about-description {
        text-align: justify;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .pto-content {
        order: 1;
    }

    .pto-image-wrapper {
        order: 2;
    }

    /* Platforms */
    .platforms-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .platform-item {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-contact-col {
        grid-column: span 1;
    }

    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
        flex: none;
        padding-right: 0;
    }

    .footer-bottom-right a {
        margin: 0 0.5rem;
    }

    .footer-bottom-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .privacy-text h1 {
        font-size: 1.75rem;
    }
}

/* Phones Only (up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Features - 1 column for phones */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .platforms-title {
        font-size: 1.5rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 120px;
    }

    .logo-stylized {
        font-size: 2rem;
    }

    .footer-bottom-right a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.lang-link:hover,
.lang-link.active {
    color: var(--primary-color);
    opacity: 1;
}

.lang-separator {
    color: #ccc;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    /* Language Selector managed in main mobile query above */

    /* If we want it in the mobile menu, we'd need to restructure JS or CSS to move it. 
       For this simple implementation, let's keep it visible if space permits or put it in nav-links.
       Actually, let's make it visible on mobile header for easy access if space allows, 
       OR add it to the mobile menu via JS. 
       
       Given the current simple structure, let's simply append it to the nav-links on mobile via CSS 
       is tricky without duplicating HTML.
       
       Let's ensure it stays visible in the header bar for now, as there isn't much space.
       Actually, `nav-links` is the mobile menu.
    */
}

/* Better Mobile Implementation: Add to nav-links for mobile via a duplicate or JS? 
   Let's keep it simple: visible on Desktop, maybe hide on very small screens or stack.
*/
@media (max-width: 992px) {
    .language-selector {
        margin-right: 0.5rem;
    }
}

/* ========================================
   Pricing Page Sections
   ======================================== */

/* Global Pricing Styles */
.pricing-page {
    background-color: var(--bg-surface);
    color: var(--text-heading);
}

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

/* --- Careers Page Styles --- */
.careers-page {
    font-family: 'Inter', sans-serif;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}

.careers-hero {
    padding: 160px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Blobs */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #FF621A;
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #1285C8;
    bottom: -100px;
    left: -100px;
}

.careers-hero .container {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.careers-hero .hero-content {
    flex: 1.2;
    max-width: 700px;
}

.careers-badge {
    display: inline-block;
    background: rgba(255, 98, 26, 0.08);
    color: #FF621A;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 98, 26, 0.1);
    border: 1px solid rgba(255, 98, 26, 0.15);
}

.careers-hero h1 {
    font-size: 4.5rem;
    color: #1a1a1a;
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.careers-hero h1 span {
    color: #FF621A;
}

.careers-hero p {
    font-size: 1.4rem;
    color: #555555;
    margin-bottom: 45px;
    line-height: 1.6;
}

.careers-hero .hero-illustration {
    flex: 0.8;
    text-align: right;
}

.illustration-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 32px;
}

.illustration-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.illustration-wrapper:hover::after {
    left: 100%;
}

.careers-hero .hero-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.careers-hero .illustration-wrapper:hover img {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.15);
}

/* Why Work With Us */
.careers-why {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.careers-why h2 {
    text-align: center;
    color: #1285C8;
    font-size: 2.8rem;
    margin-bottom: 80px;
    font-weight: 700;
}

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

.why-item {
    background: #fff;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 98, 26, 0.08);
    border-color: rgba(255, 98, 26, 0.1);
}

.why-icon {
    font-size: 3rem;
    color: #FF621A;
    margin-bottom: 25px;
}

.why-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.why-item p {
    color: #666;
    font-size: 1rem;
}

/* Open Positions */
.careers-positions {
    padding: 120px 0;
}

.careers-positions h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    font-weight: 700;
}

.positions-empty {
    text-align: center;
    background: #fff;
    padding: 80px 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.empty-icon {
    font-size: 3rem;
    color: #FF621A;
    margin-bottom: 24px;
    opacity: 0.8;
}

.positions-empty h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.positions-empty p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.job-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 35px 45px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #FF621A;
    box-shadow: 0 15px 40px rgba(255, 98, 26, 0.06);
    transform: translateX(5px);
}

.job-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.job-loc {
    display: inline-block;
    color: #1285C8;
    font-weight: 600;
    margin-bottom: 12px;
    background: rgba(18, 133, 200, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.job-info p {
    color: #555;
    font-size: 1.05rem;
}

/* Life at Company */
.careers-life {
    padding: 120px 0;
    background: #ffffff;
}

.careers-life h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 2.8rem;
    font-weight: 700;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.life-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.life-img:hover img {
    transform: scale(1.03);
}

.life-testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.4;
}

.life-testimonial cite {
    display: block;
    margin-top: 30px;
    font-size: 1.25rem;
    font-style: normal;
    color: #FF621A;
    font-weight: 700;
}

/* Benefits */
.careers-benefits {
    padding: 120px 0;
    background: #fcfcfc;
}

.careers-benefits h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 2.8rem;
    font-weight: 700;
}

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

.benefit-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #1285C8;
}

.benefit-icon {
    font-size: 3rem;
    color: #FF621A;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Final CTA */
.careers-final-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, #1285C8 0%, #0a5b8a 100%);
    color: #fff;
    text-align: center;
}

.careers-final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 800;
}

/* Buttons */
.btn-primary-large {
    display: inline-block;
    padding: 22px 50px;
    background: #FF621A;
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 98, 26, 0.3);
}

.btn-primary-large:hover {
    background: #e55616;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 98, 26, 0.4);
}

.btn-primary-outline {
    padding: 14px 30px;
    border: 2.5px solid #FF621A;
    color: #FF621A;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: #FF621A;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 98, 26, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .careers-hero h1 {
        font-size: 3.5rem;
    }

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

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

    .careers-hero .container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .careers-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .careers-hero .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .careers-hero .hero-illustration {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.8rem;
    }

    .careers-hero p {
        font-size: 1.2rem;
    }

    .why-grid,
    .benefits-grid,
    .life-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }

    .careers-final-cta h2 {
        font-size: 2.5rem;
    }

    .life-testimonial {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.8rem;
        font-style: italic;
        color: #1a1a1a;
        font-weight: 500;
        line-height: 1.4;
    }

}


/* ========================================
   Case Studies Page Styles
   ======================================== */

.stories-hero-premium {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fff7ed 0%, #eff6ff 100%);
    overflow: hidden;
    position: relative;
}

.stories-hero-premium .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stories-hero-premium .hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 98, 26, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.stories-hero-premium h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    line-height: 1.1;
}

.stories-hero-premium p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-container {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Abstract background if image is missing */
.hero-abstract-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .stories-hero-premium .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stories-hero-premium .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .stories-hero-premium p {
        margin: 0 auto 2.5rem;
    }
}

.stories-featured-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.featured-story-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.featured-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
    .featured-story-card {
        flex-direction: row;
        align-items: stretch;
    }

    .featured-image-col {
        flex: 1;
        min-height: 400px;
    }

    .featured-content-col {
        flex: 1;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.featured-image-col {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 350px;
}

.featured-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.featured-content-col {
    padding: 2.5rem;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 98, 26, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.featured-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.metric-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-item span {
    font-size: 0.9rem;
    color: var(--text-body);
}

.featured-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.featured-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stories Grid */
.stories-grid-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.stories-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .stories-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stories-grid-container {
        grid-template-columns: 1fr;
    }
}

.story-card-v2 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.story-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-img-top {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.story-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-headline {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-heading);
    line-height: 1.3;
}

.story-snippet {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    flex: 1;
}

.story-role {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 1.5rem;
    display: block;
}

.story-micro-cta {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* CTA Section */
.case-study-cta {
    padding: 6rem 0;
    text-align: center;
    background-color: white;
}

.case-study-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {

    .careers-hero,
    .careers-why,
    .careers-positions,
    .careers-life,
    .careers-benefits,
    .careers-final-cta {
        padding: 80px 0;
    }
}

/* Hero Section */
.p-hero {
    padding: 100px 0;
    background: var(--grad-soft);
    overflow: hidden;
}

.p-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

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

.p-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.p-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.6;
}

.p-hero-image-wrapper {
    flex: 1;
    position: relative;
}

.p-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--p-shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.p-hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Grid */
.p-features {
    padding: 100px 0;
}

.p-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.p-feature-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--p-white);
    border: 1px solid var(--p-gray-100);
    transition: all 0.3s ease;
}

.p-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--p-shadow-md);
}

.p-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--p-orange-50);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

/* Pricing Section */
.p-pricing {
    padding: 100px 0;
    background-color: var(--p-gray-50);
}

.p-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.p-pricing-card {
    background: var(--p-white);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--p-gray-200);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--p-shadow-xl);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.popular-badge i {
    font-size: 0.8rem;
}

/* Featured Card (Pro) - Using Theme Orange */
.p-pricing-card.featured {
    background: var(--secondary-color);
    color: white;
    border: none;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px -12px rgba(255, 98, 26, 0.3);
}

.p-pricing-card.featured .p-tier-name,
.p-pricing-card.featured .p-price,
.p-pricing-card.featured .p-price span,
.p-pricing-card.featured .p-feature-list li {
    color: white;
}

.p-pricing-card.featured .p-feature-list i {
    color: white;
}

.p-pricing-card.featured .btn-primary {
    background: white;
    color: var(--secondary-color);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-pricing-card.featured .btn-primary:hover {
    background: #fffafa;
    transform: translateY(-2px);
}

/* Small Team Info Box */
.small-team-info {
    grid-column: 1 / -1;
    background: var(--p-orange-50);
    border: 1px solid var(--p-orange-100);
    padding: 20px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--p-orange-700);
}

.small-team-info i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Optional Add-ons Section */
.p-addons-container {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--p-gray-100);
}

.p-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.p-addon-item-full {
    background: var(--p-white);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--p-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-align: left;
}

.p-addon-item-full:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--p-shadow-md);
}

.p-addon-icon {
    width: 48px;
    height: 48px;
    background: var(--p-blue-50);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.p-addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.p-tier-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.p-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.p-price span {
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.p-feature-list {
    margin: 32px 0;
    flex-grow: 1;
}

.p-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-body);
}

.p-feature-list i {
    color: #10b981;
}

/* Comparison Table */
.p-comparison {
    padding: 100px 0;
}

.p-comp-table-wrapper {
    overflow-x: auto;
    margin-top: 60px;
}

.p-comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.p-comp-table th {
    padding: 24px;
    text-align: center;
    font-weight: 700;
    background: var(--p-gray-50);
}

.p-comp-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--p-gray-100);
}

.p-comp-feature {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-heading);
}

.check-icon {
    color: #10b981;
}

.cross-icon {
    color: #ef4444;
}

/* Testimonials */
.p-testimonials {
    padding: 100px 0;
    background: var(--grad-soft);
}

.p-testimonial-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--p-shadow-md);
}

/* Responsive */
@media (max-width: 1024px) {
    .p-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .p-hero-content {
        max-width: 100%;
    }

    .p-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 60px auto 0;
    }

    .p-pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .p-hero-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   About Us Redesign (B2B SaaS Style)
   ======================================== */

.about-page {
    overflow-x: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px 0 100px;
}

.hero-text .badge {
    color: var(--secondary-color);
    background: var(--p-blue-50);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-heading);
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

/* CSS-only Modern UI Mockup */
.mockup-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
}

.mockup-row {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-row.half {
    width: 50%;
}

.mockup-row.three-quarter {
    width: 75%;
}

.mockup-chart {
    height: 150px;
    background: var(--p-blue-50);
    border-radius: 12px;
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--p-blue-100);
}

.chart-bar {
    flex: 1;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: height 1s ease-in-out;
}

.chart-bar.accent {
    background: var(--primary-color);
}

.mockup-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--p-orange-100);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.visual-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--p-blue-100);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    top: -50px;
    right: -50px;
    opacity: 0.5;
}

/* Feature Icon Grid */
.about-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-feat-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--p-gray-100);
    transition: var(--transition-normal);
}

.about-feat-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--p-shadow-md);
    transform: translateY(-5px);
}

.about-feat-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.about-feat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-feat-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Testimonial Section */
.about-trust {
    background: var(--p-enterprise-blue);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.about-trust h2 {
    color: #fff;
    margin-bottom: 60px;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-box p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-box .author {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Principles */
.about-values {
    padding: 100px 0;
}

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

.value-card {
    border-top: 4px solid var(--primary-color);
    padding-top: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Final CTA */
.about-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--p-blue-50);
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Utilities */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   Enterprise Footer Redesign
   ======================================== */

.site-footer-v2 {
    background-color: #0F172A;
    color: #E5E7EB;
    font-family: var(--font-family);
}

.footer-top-cta {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-cta-info h2 {
    color: var(--secondary-color);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.footer-cta-info p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.8;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.contact-direct-item i {
    color: var(--secondary-color);
}

.footer-mini-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mini-form .form-group {
    margin-bottom: 16px;
}

.footer-mini-form input,
.footer-mini-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    color: #fff;
    border-radius: 6px;
    transition: var(--transition-normal);
}

.footer-mini-form input:focus,
.footer-mini-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.footer-main-links {
    padding: 80px 0;
}

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

.footer-links-col h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.footer-links-col ul li a {
    color: #E5E7EB;
    transition: var(--transition-normal);
}

.footer-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom-trust {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    gap: 24px;
}

.trust-social {
    display: flex;
    gap: 20px;
}

.trust-social a {
    color: #E5E7EB;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.trust-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Response Fix for old footer styles if they conflict */
.site-footer {
    display: none;
}

@media (max-width: 768px) {
    .platforms-grid {
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .platforms-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .platform-item {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/* --- Our Mission Page (Modern SaaS) --- */
:root {
    --mission-primary: #FF621A;
    --mission-primary-hover: #e55616;
    --mission-secondary: #1285C8;
    --mission-bg-light: #f9f9f9;
    --mission-text-dark: #333;
}

.mission-page section {
    padding: 6rem 0;
}

/* Hero Section */
.mission-hero {
    padding: 8rem 0 6rem !important;
    background: white;
    text-align: center;
}

.mission-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--mission-text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-inline: auto;
}

.mission-hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.mission-hero-illustration {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.mission-hero-illustration .illustration-wrapper {
    max-width: 900px;
    width: 100%;
}

.mission-hero-illustration .illustration-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.mission-hero-illustration .illustration-wrapper:hover img {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.15);
}

/* Mission Statement */
.mission-statement {
    background: var(--mission-bg-light);
    text-align: center;
}

.mission-statement h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.mission-statement .desc {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.mission-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--mission-primary);
}

.mission-icon-box:nth-child(2) i {
    color: var(--mission-secondary);
}

/* Core Values */
.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2rem;
    color: var(--mission-primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Stats Section */
.mission-stats {
    background: white;
    text-align: center;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item .val {
    font-size: 4rem;
    font-weight: 800;
    color: var(--mission-primary);
    display: block;
    line-height: 1;
}

.stat-item .label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mission-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
}

/* Success Stories / Carousel */
.mission-cases {
    background: var(--mission-bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.case-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--mission-primary);
}

.case-card h3 {
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-item {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    background: #eee;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.team-item h3 {
    color: var(--mission-secondary);
    margin-bottom: 0.25rem;
}

.team-item .role {
    font-weight: 700;
    color: var(--mission-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

/* Final CTA */
.mission-final-cta {
    background: linear-gradient(135deg, var(--mission-secondary), #0d6092);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-final-cta .container {
    position: relative;
    z-index: 2;
}

.mission-final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.mission-final-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Utility buttons */
.btn-mission {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-mission-primary {
    background: var(--mission-primary);
    color: white;
}

.btn-mission-primary:hover {
    background: var(--mission-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 98, 26, 0.2);
}

@media (max-width: 991px) {
    .mission-hero h1 {
        font-size: 2.75rem;
    }

    .mission-icons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Pricing Trial Badge */
.pricing-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 98, 26, 0.1);
    color: var(--p-orange-600);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 98, 26, 0.2);
    animation: pulseSubtle 2s infinite ease-in-out;
}

@keyframes pulseSubtle {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 98, 26, 0.2);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 15px 5px rgba(255, 98, 26, 0.1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 98, 26, 0.2);
    }
}

/* Mission Quotes Section */
.mission-quotes {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.quotes-header h2 {
    color: #FF621A;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quotes-header p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quotes-slider {
    overflow: hidden;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInQuotes 1s ease forwards;
}

.quotes-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.quote-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 98, 26, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 1.666rem);
    margin: 0.833rem;
}

.quote-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 98, 26, 0.15);
}

.quote-icon {
    color: #FF621A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.quotes-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.quotes-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF621A;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.quotes-nav .dot.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .quote-card {
        flex: 0 0 calc(50% - 1.666rem);
    }
}

@media (max-width: 768px) {
    .quotes-header h2 {
        font-size: 2rem;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .why-grid,
    .benefits-grid,
    .life-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .careers-final-cta h2 {
        font-size: 2.2rem;
    }
}

/* ========================================
   Customer Stories Page
   ======================================== */

.stories-page {
    background-color: var(--bg-surface);
}

/* 1. Hero Section */
.stories-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--grad-soft);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.stories-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-heading);
}

.stories-hero p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-badges i {
    margin-right: 8px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--p-shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-normal);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid #edf2f7;
}

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

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
}

.mockup-body {
    padding: 30px;
    height: 400px;
}

.skeleton-chart {
    height: 180px;
    background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
    border-radius: 12px;
    margin-bottom: 30px;
}

.skeleton-rows span {
    display: block;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    margin-bottom: 16px;
    width: 100%;
}

.skeleton-rows span:nth-child(2) {
    width: 80%;
}

.skeleton-rows span:nth-child(3) {
    width: 60%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 2. Proof Section */
.proof-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.proof-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.metric-val {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* 3. Featured Case Study */
.featured-case {
    padding: 100px 0;
    background: #fcfcfc;
}

.featured-card {
    background: #fff;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.company-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
}

.badge {
    background: var(--p-orange-50);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.company-meta span:not(.badge) {
    color: #64748b;
    font-size: 0.95rem;
}

.case-details {
    display: grid;
    gap: 30px;
}

.case-column h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-testimonial {
    background: var(--p-blue-50);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.featured-testimonial blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.4;
    margin-bottom: 24px;
}

.featured-testimonial cite {
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}

/* 4. Industry Grid */
.industry-stories {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: var(--transition-normal);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--p-shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--p-orange-50);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.story-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.story-card p {
    color: #64748b;
    margin-bottom: 24px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 5. Compliance Section */
.compliance-section {
    padding: 100px 0;
    background: #fff;
}

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

.compliance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.compliance-list {
    display: grid;
    gap: 20px;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 500;
}

.compliance-list i {
    color: var(--primary-color);
}

/* 6. ROI Section */
.roi-section {
    padding: 100px 0;
    background: var(--p-gray-50);
}

.roi-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.roi-item {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--p-shadow-md);
}

.roi-header {
    margin-bottom: 24px;
}

.roi-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.roi-unit {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.roi-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* 7. Closing CTA */
.closing-cta {
    padding: 120px 0;
    background: #fff;
}

.cta-card {
    background: var(--p-enterprise-blue);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 12px;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .hero-container,
    .featured-card,
    .compliance-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-container {
        padding-top: 60px;
    }

    .hero-content {
        order: 1;
    }

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

    .hero-actions,
    .cta-actions {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

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

    .metric-val {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .stories-hero h1,
    .cta-card h2 {
        font-size: 2.4rem;
    }

    .proof-grid {
        flex-direction: column;
        gap: 40px;
    }

    .featured-card {
        padding: 30px;
    }

    .featured-testimonial blockquote {
        font-size: 1.25rem;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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


/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    line-height: 1.1;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding-bottom: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Modern Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.modern-form .required {
    color: #ef4444;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--text-heading);
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 98, 26, 0.1);
    outline: none;
}

.modern-form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.modern-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: var(--primary-color);
}

.modern-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 98, 26, 0.25);
    color: #fff;
}

.modern-form .btn-primary:hover {
    background: #e55616;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 98, 26, 0.35);
}

/* Sidebar Styles */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(18, 133, 200, 0.1);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text a,
.info-text p {
    font-size: 1.05rem;
    color: var(--text-heading);
    font-weight: 500;
    margin: 0;
    text-decoration: none;
}

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

/* Map Card */
.contact-map-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-map-card img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 20px;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: var(--text-body);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background: #fffafa;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-sidebar {
        order: 2;
    }
}

@media (max-width: 576px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-content {
        padding-bottom: 60px;
    }
}

/* Full Width FAQ Section */
.faq-section-full {
    background-color: #F9F9FB;
    /* Luxury light gray */
    padding: 100px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-section-wrapper {
    /* Reset margins as parent handles spacing */
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
}

/* Premium High-Conversion FAQ */
.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 10px auto 0;
}

.premium-accordion .faq-item {
    border: none;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Luxury Apple-style FAQ Question */
.premium-accordion .faq-item {
    border: none;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Soft layered shadow */
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-accordion .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.premium-accordion .faq-item.active {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Subtle left accent bar */
.premium-accordion .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    opacity: 0;
    transform: scaleY(0.8);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-accordion .faq-item.active::before {
    opacity: 1;
    transform: scaleY(1);
}

.premium-accordion .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 28px;
    /* Generous padding */
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.premium-accordion .faq-item.active .faq-question {
    color: var(--primary-color);
}

.premium-accordion .faq-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-accordion .faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.premium-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s ease;
}

.premium-accordion .faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 28px;
    /* max-height handled by JS */
}

.faq-micro-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

/* Micro-interaction: Underline animation */
.faq-micro-cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-micro-cta:hover {
    color: var(--primary-color);
}

.faq-micro-cta:hover::after {
    width: 100%;
}

/* Final CTA Block */
.contact-final-cta {
    margin-top: 80px;
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(255, 98, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #e55616;
}

.final-cta-note {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 2rem;
    }

    .contact-final-cta {
        padding: 40px 24px;
    }
}

/* Smooth Accordion Animation */
.premium-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    padding: 0 24px;
    /* Move vertical padding to content or handle via height */
}

.premium-accordion .faq-item.active .faq-answer {
    opacity: 1;
    /* max-height is set by JS */
    padding-bottom: 24px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
}

/* Ensure padding doesn't break collapse */
.premium-accordion .faq-answer {
    padding-bottom: 0;
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #fff7ed 0%, #eff6ff 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Blog Main Section */
.blog-main-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Featured Blog Card */
.featured-blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-blog-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-blog-text {
    padding: 40px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-date {
    color: var(--text-body);
    font-size: 0.875rem;
}

.featured-blog-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-blog-text p {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 12px;
}

.btn-read-more i {
    font-size: 0.875rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more-link:hover {
    gap: 10px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: block;
    padding: 10px 16px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.category-list a:hover,
.category-list a.active {
    background: var(--p-orange-50);
    color: var(--primary-color);
}

/* Recent Posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    text-decoration: none;
    display: block;
}

.recent-post-title {
    display: block;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.recent-posts-list a:hover .recent-post-title {
    color: var(--primary-color);
}

.recent-post-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-body);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
}

.newsletter-widget h3 {
    color: #ffffff;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    outline: none;
}

.newsletter-form button {
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
}

/* Blog Footer CTA */
.blog-footer-cta {
    background: linear-gradient(135deg, #fff7ed 0%, #eff6ff 100%);
    padding: 80px 0;
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-cta-content p {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.cta-reassurance {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-body);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .blog-sidebar {
        position: static;
    }

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

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .featured-blog-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .blog-hero-section {
        padding: 60px 0 40px;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-subtitle {
        font-size: 1.125rem;
    }

    .blog-main-section {
        padding: 60px 0;
    }

    .featured-blog-card {
        margin-bottom: 40px;
    }

    .featured-blog-image {
        height: 250px;
    }

    .featured-blog-text {
        padding: 28px;
    }

    .featured-blog-text h2 {
        font-size: 1.5rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .footer-cta-content h2 {
        font-size: 2rem;
    }

    .blog-footer-cta {
        padding: 60px 0;
    }
}

/* =========================================
   Help Center Styles
   ========================================= */

/* Hero Section */
.help-hero {
    background-color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-image:
        linear-gradient(to right, rgba(18, 133, 200, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(18, 133, 200, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.help-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.help-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.help-search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.help-search-form {
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-search-form:hover,
.help-search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(18, 133, 200, 0.15);
}

.help-search-input {
    width: 100%;
    padding: 24px 24px 24px 60px;
    font-size: 1.125rem;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-heading);
    outline: none;
}

.help-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.help-search-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.help-search-btn:hover {
    background: var(--primary-hover);
}

/* Featured Section */
.help-featured-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.help-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-decoration: none;
    color: var(--text-body);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(18, 133, 200, 0.1);
}

.help-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(18, 133, 200, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.help-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.help-card-desc {
    font-size: 0.9375rem;
    color: var(--text-body);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.5;
}

.help-card-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Categories Section */
.help-categories-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.help-category-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.help-category-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.help-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.help-article-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.help-article-list li {
    margin-bottom: 12px;
}

.help-article-list li a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.help-article-list li a i {
    color: #9ca3af;
    font-size: 0.875rem;
}

.help-article-list li a:hover {
    color: var(--primary-color);
}

.help-category-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.help-category-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.help-cta-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.help-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .help-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767px) {
    .help-title {
        font-size: 2.25rem;
    }

    .help-featured-grid {
        grid-template-columns: 1fr;
    }

    .help-categories-grid {
        grid-template-columns: 1fr;
    }

    .help-search-input {
        padding: 16px 16px 16px 48px;
        font-size: 1rem;
    }

    .help-search-icon {
        left: 16px;
    }

    .help-search-btn {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 12px;
    }

    .help-search-form {
        background: transparent;
        box-shadow: none;
    }

    .help-search-input {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
}