/* Common Styles for All Pages */

/* Import Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

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

:root {
    --primary-color: #192945;
    --secondary-color: #F0F2F5;
    --accent-color: #4FA3B8;
    --highlight-color: #E8A74C;
    --neutral-light: #F4F5F7;
    --neutral-dark: #6B7280;
    --background: #ffffff;
    --border: #d2d2d7;
}

body {
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--background);
    overflow-x: hidden;
}

/* Navigation - Modern Glass Design */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(30px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 72px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 44px;
    width: auto;
    margin-right: 0;
    filter: drop-shadow(0 2px 8px rgba(25, 41, 69, 0.1));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(25, 41, 69, 0.2));
}

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

.nav-links li {
    position: relative;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    padding: 16px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(79, 163, 184, 0.1) 0%, rgba(232, 167, 76, 0.05) 100%);
    color: var(--accent-color);
    transform: translateX(4px);
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    padding: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.dropdown-arrow:hover {
    background: rgba(79, 163, 184, 0.1);
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 163, 184, 0.1) 0%, rgba(232, 167, 76, 0.05) 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 25px;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* CTA Navigation Link - Request Demo Button */
.nav-links a.cta-nav-link {
    background: var(--accent-color);
    color: white !important;
    font-weight: 600;
    padding: 12px 24px;
    margin-left: 8px;
    box-shadow: 0 4px 15px rgba(79, 163, 184, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a.cta-nav-link::before {
    display: none;
}

.nav-links a.cta-nav-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 163, 184, 0.5);
    color: white !important;
}

/* Make dropdown main links clickable */
.dropdown-main-link {
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(79, 163, 184, 0.15);
}

.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(79, 163, 184, 0.15) 0%, rgba(232, 167, 76, 0.08) 100%);
    box-shadow: 0 2px 12px rgba(79, 163, 184, 0.2);
}

.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(79, 163, 184, 0.1) 0%, rgba(232, 167, 76, 0.05) 100%);
    transform: scale(1.05);
}

.mobile-menu-links a.cta-nav-link {
    background: var(--accent-color);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79, 163, 184, 0.4);
    margin-top: 8px;
}

.mobile-menu-links a.cta-nav-link:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(79, 163, 184, 0.5);
    color: white !important;
}

/* Mobile Dropdown Menu - Simplified */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.mobile-dropdown-toggle a {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown-arrow {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--accent-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.mobile-dropdown-arrow:hover {
    background: rgba(79, 163, 184, 0.1);
    transform: scale(1.1);
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg) scale(1.1);
    background: rgba(79, 163, 184, 0.15);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
    opacity: 1;
}

.mobile-dropdown-menu li {
    margin: 2px 0;
}

.mobile-dropdown-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(79, 163, 184, 0.05);
    color: var(--neutral-dark);
    transition: background-color 0.2s ease;
    display: block;
    margin-left: 12px;
    text-decoration: none;
}

.mobile-dropdown-menu a:hover {
    background: rgba(79, 163, 184, 0.1);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--background) 100%);
    padding: 120px 24px 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--neutral-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 24px;
    font-weight: 400;
    color: var(--neutral-dark);
    line-height: 1.4;
}

/* Sections */
.section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

/* Cards Grid - Apple Style */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.card {
    background: var(--secondary-color);
    border-radius: 18px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.card:hover h3 {
    color: var(--accent-color);
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.card p {
    color: var(--neutral-dark);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 24px;
    margin-top: 120px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    align-items: start;
}

.footer-top-left {
    grid-column: 1;
    grid-row: 1;
}

.footer-top-right {
    grid-column: 2 / 4;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.footer-bottom-center {
    grid-column: 2;
    grid-row: 2;
}

.footer-bottom-right {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-company h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.footer-company p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--accent-color);
    width: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-social-media {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-media h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 8px 0 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 163, 184, 0.3);
}

.social-icon i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    text-align: center;
    color: var(--neutral-dark);
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }

    .nav-links {
        display: none;
    }

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

    .logo img {
        height: 32px;
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .section {
        padding: 60px 20px;
    }

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

    .section-header h2 {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 32px 24px;
    }

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

    .card p {
        font-size: 14px;
    }

    .footer {
        padding: 32px 20px;
        margin-top: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 20px;
    }

    .footer-top-left {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-top-right {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .footer-bottom-left {
        grid-column: 1;
        grid-row: 3;
    }

    .footer-bottom-center {
        grid-column: 1;
        grid-row: 4;
        justify-content: flex-start;
    }

    .footer-bottom-right {
        grid-column: 1;
        grid-row: 5;
        justify-content: flex-start;
    }

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

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-social-media {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-social-media h5 {
        margin: 0;
    }
}

/* Very small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 56px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn span {
        height: 2px;
        width: 20px;
    }

    .mobile-menu-overlay {
        padding: 80px 20px 40px;
    }

    .mobile-menu-links {
        gap: 16px;
    }

    .mobile-menu-links a {
        font-size: 18px;
        padding: 12px 24px;
        border-radius: 14px;
    }

    .mobile-dropdown-toggle a {
        font-size: 18px;
    }

    .mobile-dropdown-arrow {
        min-width: 28px;
        min-height: 28px;
        padding: 6px;
        font-size: 11px;
    }

    .mobile-dropdown-menu a {
        font-size: 14px;
        padding: 8px 14px;
    }

    .hero {
        padding: 70px 16px 60px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: clamp(28px, 12vw, 36px);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.3;
    }

    .section {
        padding: 50px 16px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: clamp(24px, 10vw, 32px);
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 15px;
    }

    .cards-grid {
        gap: 20px;
    }

    .card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer {
        padding: 24px 16px;
        margin-top: 60px;
    }

    .footer-grid {
        gap: 16px;
    }

    .footer-company h4 {
        font-size: 18px;
    }

    .footer-company p {
        font-size: 13px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact span {
        font-size: 13px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .footer-social-media h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon i {
        font-size: 14px;
    }
}

/* Extra small mobile devices (320px and below) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 12px;
        height: 52px;
    }

    .logo img {
        height: 24px;
    }

    .mobile-menu-btn {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-btn span {
        height: 1.5px;
        width: 18px;
    }

    .mobile-menu-overlay {
        padding: 70px 16px 30px;
    }

    .mobile-menu-links {
        gap: 12px;
    }

    .mobile-menu-links a {
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 12px;
    }

    .mobile-dropdown-toggle a {
        font-size: 16px;
    }

    .mobile-dropdown-arrow {
        min-width: 24px;
        min-height: 24px;
        padding: 4px;
        font-size: 10px;
    }

    .mobile-dropdown-menu a {
        font-size: 13px;
        padding: 6px 12px;
    }

    .hero {
        padding: 60px 12px 60px;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: clamp(24px, 14vw, 28px);
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .section {
        padding: 40px 12px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: clamp(20px, 12vw, 24px);
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 14px;
    }

    .card {
        padding: 24px 16px;
    }

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

    .card p {
        font-size: 12px;
    }

    .footer {
        padding: 20px 12px;
        margin-top: 50px;
    }

    .footer-grid {
        gap: 12px;
    }

    .footer-company h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .footer-company p {
        font-size: 12px;
    }

    .footer-contact {
        gap: 8px;
    }

    .footer-contact span {
        font-size: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .footer-social-media h5 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon i {
        font-size: 12px;
    }

    /* Partners responsive */
    .partners {
        padding: 40px 24px;
    }

    .partners h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .partner-item {
        padding: 16px;
        font-size: 14px;
    }

    /* Testimonial responsive */
    .testimonial {
        padding: 40px 24px;
    }

    .testimonial blockquote {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .testimonial cite {
        font-size: 14px;
    }

    /* Blog grid responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-excerpt {
        font-size: 14px;
    }
}

/* Partners Section */
.partners {
    background: var(--secondary-color);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    margin-bottom: 48px;
}

.partners h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    align-items: center;
}

.partner-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent-color);
    background: var(--secondary-color);
}

/* Testimonial */
.testimonial {
    background: var(--primary-color);
    color: white;
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 100%);
}

.testimonial blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 32px;
    font-style: italic;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial cite {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial.changing .testimonial blockquote,
.testimonial.changing .testimonial cite {
    opacity: 0;
    transform: translateY(10px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.blog-card-image {
    height: 200px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    font-size: 14px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.blog-card-date {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--neutral-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-card-category {
    display: inline-block;
    background: rgba(79, 163, 184, 0.1);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
