﻿

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

:root {
    --header-offset: 8.5rem;
}

@media (min-width: 768px) {
    :root {
        --header-offset: 6.25rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #020202;
    overflow-x: hidden;
    padding-top: var(--header-offset);
}

/* Typography */
.font-ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 1.5rem;
    }

    .hero-content {
        gap: 2rem;
        padding: 2rem 0 3rem 0;
    }

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

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

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

    .hero-buttons {
        align-items: stretch;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 193, 207, 0.25);
}

.btn-secondary {
    border: 2px solid #1871C9;
    color: #1871C9;
    background: transparent;
    height: 60px;
    justify-content: center;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1871C9;
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-1px) scale(1.05);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    padding-left: 1.5rem;
}

.btn-outline {
    border: 2px solid #1871C9;
    color: #1871C9;
    background: transparent;
}

.btn-outline:hover {
    background: #1871C9;
    color: white;
    transform: translateY(-1px) scale(1.05);
}

.btn-white {
    background: white;
    color: #1871C9;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.header-cta__button {
    min-width: 210px;
    justify-content: center;
    padding: 0.95rem 2.75rem;
    text-align: center;
}

@media (min-width: 1280px) {
    .header-cta__button {
        min-width: 240px;
    }
}

.btn-icon {
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Header */
.top-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0.875rem 0;
    color: #E6F5FF;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 3rem;
    max-height: 6rem;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.top-info-bar.is-hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    pointer-events: none;
    min-height: 0;
    margin-bottom: 0;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.top-info-flag {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.top-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.top-info-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 220px;
}

.top-info-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F6FBFF;
    white-space: nowrap;
    letter-spacing: 0.02em;
    font-size: 0.75rem;
    font-weight: 500;
}

.top-info-icon {
    color: #54D6FF;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.top-info-icon svg {
    width: 1rem;
    height: 1rem;
}

.top-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    line-height: 1.3;
}

.top-info-title {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 0.6875rem;
    line-height: 1.2;
    color: #B8DFFF;
}

.top-info-link,
.top-info-detail {
    color: #E6F5FF;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.top-info-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-info-link:hover,
.top-info-link:focus {
    color: #54D6FF;
}

.top-info-social {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #E6F5FF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-info-social svg {
    width: 16px;
    height: 16px;
}

.top-info-social:hover,
.top-info-social:focus-visible {
    background: rgba(84, 214, 255, 0.2);
    border-color: rgba(84, 214, 255, 0.5);
    transform: translateY(-2px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #181B2A;
    z-index: 9997;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1871C9;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.logo-accent {
    color: #00C1CF;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav.desktop-nav {
    display: none;
}

.nav.desktop-nav {
    display: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #00C1CF;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00C1CF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #181B2A;
    border-top: 1px solid #374151;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 1023px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .nav.desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    .mobile-menu {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .header-content {
        gap: 0.5rem;
    }

    .header-cta__button {
        min-width: 0;
        width: 100%;
        flex: 1 1 100%;
        padding: 0.85rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .nav.desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .top-info-bar {
        gap: 2rem;
        padding: 1rem 0;
        min-height: 3.5rem;
    }

    .top-info-list {
        gap: 2rem;
    }

    .top-info-list-item {
        font-size: 0.8125rem;
        gap: 0.625rem;
    }

    .top-info-icon {
        font-size: 1.125rem;
    }

    .top-info-title {
        font-size: 0.75rem;
    }

    .top-info-link,
    .top-info-detail {
        font-size: 0.875rem;
    }

    .hero {
        padding-top: 3rem;
    }
}

@media (max-width: 767px) {
    .top-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        min-height: auto;
        max-height: none;
    }

    .top-info-item {
        font-size: 0.875rem;
        width: 100%;
    }

    .top-info-label {
        font-size: 0.8125rem;
    }

    .top-info-list {
        width: 100%;
        overflow-x: auto;
        gap: 1.25rem;
        padding-bottom: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(84, 214, 255, 0.5) rgba(255, 255, 255, 0.05);
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .top-info-list::-webkit-scrollbar {
        height: 5px;
    }

    .top-info-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 999px;
    }

    .top-info-list::-webkit-scrollbar-thumb {
        background: rgba(84, 214, 255, 0.5);
        border-radius: 999px;
    }

    .top-info-list::-webkit-scrollbar-thumb:hover {
        background: rgba(84, 214, 255, 0.7);
    }

    .top-info-list-item {
        scroll-snap-align: start;
        align-items: center;
        flex-shrink: 0;
        gap: 0.5rem;
    }

    .top-info-icon {
        font-size: 1rem;
    }

    .top-info-text {
        gap: 0.125rem;
        min-width: 0;
    }

    .top-info-title {
        font-size: 0.6875rem;
    }

    .top-info-link,
    .top-info-detail {
        white-space: nowrap;
        font-size: 0.8125rem;
    }

    .top-info-social {
        margin-left: 0;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav .nav-link {
    padding: 0.5rem 0.75rem;
    display: block;
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: auto;
    background: white;
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0 3.5rem 0;
}

.hero-text {
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 2rem;
    }

    .hero-content {
        gap: 3rem;
        padding: 3rem 0 5rem 0;
    }

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

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding-top: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0 5rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: color 0.5s ease;
}

.hero-title:hover {
    color: #1871C9;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1871C9;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.hero-subtitle:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.75;
    transition: color 0.3s ease;
}

.hero-description:hover {
    color: #020202;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
}

.hero-buttons .btn {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 150px;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 1.5rem;
    }

    .hero-content {
        gap: 2rem;
        padding: 2rem 0 3rem 0;
    }

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

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

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

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

    .hero-buttons .btn {
        flex: 1 1 48%;
    }
}

@media (max-width: 420px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* Segments Section */
.segments {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #F6FBFF 0%, #FFFFFF 65%);
    overflow: hidden;
}

.segments::before,
.segments::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
}

.segments::before {
    width: 320px;
    height: 320px;
    top: -160px;
    right: -120px;
    background: rgba(0, 193, 207, 0.35);
}

.segments::after {
    width: 380px;
    height: 380px;
    bottom: -200px;
    left: -160px;
    background: rgba(24, 113, 201, 0.25);
}

.segments .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.segments .section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1rem;
}

.segments .section-description {
    color: #4B5D73;
}

@media (max-width: 900px) {
    .top-info-bar {
        display: none !important;
    }
}

.segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    align-items: stretch;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 1.5rem;
    }

    .hero-content {
        gap: 2rem;
        padding: 2rem 0 3rem 0;
    }

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

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

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

    .hero-buttons {
        align-items: stretch;
    }
}

@media (min-width: 640px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.service-card {
    position: relative;
    width: 100%;
    height: 360px;
    cursor: pointer;
    perspective: 1400px;
    transform-style: preserve-3d;
    border-radius: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                filter 0.4s ease,
                opacity 0.6s ease var(--entry-delay, 0s);
    transform: translate3d(0, var(--entry-translate, 0), 0) rotateX(var(--tiltY, 0deg)) rotateY(var(--tiltX, 0deg)) scale(var(--card-scale, 1));
    transform-origin: center center;
    --entry-translate: 0px;
    --tiltX: 0deg;
    --tiltY: 0deg;
    --card-scale: 1;
    --entry-delay: 0s;
}

.service-card:focus-visible {
    outline: 3px solid rgba(24, 113, 201, 0.45);
    outline-offset: 6px;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(24, 113, 201, 0.08);
    pointer-events: none;
    transition: border 0.4s ease;
}

.service-card:hover::after,
.service-card.is-active::after,
.service-card.hover-flipped::after,
.service-card.flipped::after {
    border-color: rgba(24, 113, 201, 0.25);
}

.service-card .card-front,
.service-card .card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    padding: 2rem;
    border-radius: inherit;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(2, 2, 2, 0.08);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    overflow: hidden;
}

.card-front {
    background: rgba(255, 255, 255, 0.98);
    z-index: 2;
    transform: rotateY(0deg);
}

.card-back {
    background: linear-gradient(135deg, #1871C9 0%, #00C1CF 100%);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 25px 50px rgba(0, 129, 180, 0.3);
    z-index: 1;
}

.service-card.flipped .card-front,
.service-card.hover-flipped .card-front {
    transform: rotateY(-180deg);
}

.service-card.flipped .card-back,
.service-card.hover-flipped .card-back {
    transform: rotateY(0deg);
}

.service-card.is-active {
    --card-scale: 1.02;
    box-shadow: 0 22px 55px rgba(24, 113, 201, 0.18);
    filter: saturate(1.03);
}

.service-card.is-active .card-icon {
    box-shadow: 0 0 0 10px rgba(24, 113, 201, 0.08);
}

.service-card:hover {
    box-shadow: 0 25px 60px rgba(24, 113, 201, 0.16);
}

.card-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(0, 193, 207, 0.18), rgba(24, 113, 201, 0.28));
    color: #0F437A;
    box-shadow: 0 10px 25px rgba(24, 113, 201, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.service-card:hover .card-icon,
.service-card.is-active .card-icon,
.service-card.hover-flipped .card-icon,
.service-card.flipped .card-icon {
    transform: scale(1.06) rotate(-2deg);
    filter: brightness(1.04);
    box-shadow: 0 15px 35px rgba(24, 113, 201, 0.26);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    line-height: 1.3;
    margin: 0;
}

.card-summary {
    color: #4B5D73;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1rem;
    margin: 0;
}

.card-back-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.card-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.card-list li::before {
    content: '.';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    line-height: 1.5;
}

.card-back .card-flip-indicator {
    color: rgba(255, 255, 255, 0.95);
}

.card-flip-indicator {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1871C9;
    margin-top: auto;
    padding-top: 1rem;
    letter-spacing: 0.02em;
    animation: pulse 2s ease-in-out infinite;
}

.card-flip-indicator::after {
    content: '\203A';
    font-size: 0.85rem;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.7;
        transform: translateZ(20px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateZ(20px) scale(1.08);
    }
}

@media (hover: hover) {
    .service-card:hover {
        --card-scale: 1.03;
    }
}

@media (max-width: 639px) {
    .service-card {
        height: 340px;
    }

    .service-card .card-front,
    .service-card .card-back {
        padding: 1.75rem;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.375rem;
    }

    .card-summary {
        font-size: 0.9375rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .service-card {
        height: 380px;
    }
}

.hero-image {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 2rem;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
    }
}

.image-placeholder {
    width: 100%;
    max-width: 32rem;
    height: 24rem;
    background: linear-gradient(135deg, #EFF1F2 0%, rgba(239, 241, 242, 0.5) 100%);
    border-radius: 1rem;
    border: 2px dashed rgba(24, 113, 201, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-placeholder:hover {
    border-color: #1871C9;
    background: linear-gradient(135deg, rgba(0, 193, 207, 0.05) 0%, rgba(84, 114, 210, 0.05) 100%);
}

.image-placeholder:hover .image-icon {
    background: rgba(24, 113, 201, 0.2);
    transform: scale(1.1);
}

.image-placeholder:hover {
    color: #1871C9;
}

.image-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(24, 113, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.image-icon svg {
    color: #1871C9;
}

.image-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.image-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
}

.hero-screenshot {
    width: 100%;
    max-width: 32rem;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 25px 45px rgba(24, 113, 201, 0.15);
    border: 2px solid rgba(24, 113, 201, 0.15);
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero-screenshot {
        max-width: 56rem;
    }

    .hero-content {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 4rem;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-text {
    font-size: 1.125rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #666;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

/* Features Section */
.features {
    background: #EFF1F2;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 193, 207, 0.05) 0%, rgba(84, 114, 210, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-1rem) scale(1.05);
    box-shadow: 0 20px 40px rgba(24, 113, 201, 0.1);
    border-color: rgba(24, 113, 201, 0.2);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card .feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(12deg) scale(1.1);
}

.feature-card .feature-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.25);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #1871C9;
    transform: translateX(0.5rem);
}

.feature-description {
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #020202;
}

/* Benefits Section */
.benefits {
    background: white;
    padding: 3.5rem 0;
}

.benefits .section-header {
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(24, 113, 201, 0.05);
    transform: translateY(-0.5rem);
}

.benefit-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: #1871C9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.benefit-item:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.25) rotate(12deg);
}

.benefit-icon svg {
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-content {
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-content {
    transform: translateX(0.5rem);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #1871C9;
}

.benefit-description {
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-description {
    color: #020202;
}

.stats-section {
    margin-top: 5rem;
    background: #EFF1F2;
    border-radius: 1rem;
    padding: 3rem;
    transition: all 0.5s ease;
}

.stats-section:hover {
    background: linear-gradient(135deg, #EFF1F2 0%, white 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1871C9;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #00C1CF;
}

.stat-label {
    color: #666;
    font-weight: 300;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #020202;
}

.ai-segment-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(11, 34, 66, 0.95) 0%, #1871C9 100%);
    color: #fff;
}

.ai-segment-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at bottom left, rgba(0, 193, 207, 0.25), transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.ai-segment-cta .container {
    position: relative;
    z-index: 1;
}

.ai-segment-cta__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(10, 23, 43, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(9, 32, 68, 0.35);
    text-align: center;
}

.ai-segment-cta__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ai-segment-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.ai-segment-cta__description {
    max-width: 38rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.ai-segment-cta__actions {
    display: flex;
    justify-content: center;
}

.ai-segment-cta__button {
    box-shadow: 0 18px 40px rgba(0, 193, 207, 0.3);
}

.ai-segment-cta__button:hover {
    box-shadow: 0 20px 50px rgba(0, 193, 207, 0.35);
}

@media (min-width: 768px) {
    .ai-segment-cta__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .ai-segment-cta__description {
        margin: 0;
    }

    .ai-segment-cta__actions {
        justify-content: flex-end;
    }
}

/* Plans Section */
.plans {
    background: #EFF1F2;
}

.trial-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plan-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 193, 207, 0.05) 0%, rgba(84, 114, 210, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-1rem) scale(1.05);
    box-shadow: 0 20px 40px rgba(24, 113, 201, 0.1);
}

.plan-card.popular {
    border: 2px solid #1871C9;
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.plan-card:hover .popular-badge {
    transform: scale(1.1);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-header {
    transform: scale(1.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.plan-card:hover .plan-name {
    color: #1871C9;
}

.plan-description {
    color: #666;
    font-weight: 300;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.plan-card:hover .plan-description {
    color: #020202;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1871C9;
    transition: color 0.3s ease;
}

.plan-card:hover .price {
    color: #00C1CF;
}

.period {
    color: #666;
    transition: color 0.3s ease;
}

.plan-card:hover .period {
    color: #020202;
}

.plan-features {
    list-style: none;
    padding: 0 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(0.5rem);
}

.check-icon {
    color: #00C1CF;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature-item:hover .check-icon {
    transform: scale(1.25);
}

.feature-item span {
    color: #666;
    font-weight: 300;
    transition: color 0.2s ease;
}

.feature-item:hover span {
    color: #020202;
}

.plan-cta {
    margin: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    color: #666;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: #EFF1F2;
    border-radius: 0.5rem;
}

.stat-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(24, 113, 201, 0.15);
    color: #1871C9;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1871C9;
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    color: #666;
    font-weight: 300;
    font-size: 0.875rem;
}

.about-image {
    position: relative;
}

.about-visual {
    position: relative;
    width: 100%;
    min-height: 24rem;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
    color: #F8FBFF;
    padding: 2.5rem 2rem;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(24, 113, 201, 0.25);
    isolation: isolate;
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.about-visual__halo {
    position: absolute;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%);
    filter: blur(6px);
    top: -6rem;
    right: -4rem;
    opacity: 0.8;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: -1;
}

.about-visual__avatar {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(231, 245, 255, 0.85) 100%);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 35px rgba(10, 31, 68, 0.25);
}

.about-visual__avatar-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 193, 207, 0.3) 0%, rgba(84, 114, 210, 0.3) 100%);
    filter: blur(12px);
    z-index: -1;
}

.about-visual__avatar-inner {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #0A1F44;
    display: grid;
    place-items: center;
    position: relative;
    color: #F8FBFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.about-visual__avatar-inner::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px solid rgba(0, 193, 207, 0.45);
    animation: rotateRing 12s linear infinite;
}

.about-visual__avatar-initial {
    letter-spacing: 0.1em;
}

.about-visual__bubble {
    position: relative;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    box-shadow: 0 18px 35px rgba(10, 31, 68, 0.2);
    backdrop-filter: blur(8px);
    max-width: min(22rem, 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-visual__bubble-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.about-visual__bubble-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-visual__bubble--primary {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(231, 245, 255, 0.9) 100%);
    color: #0A1F44;
    border-left: 4px solid rgba(0, 193, 207, 0.65);
    animation: floatPrimary 7s ease-in-out infinite;
}

.about-visual__bubble--secondary {
    align-self: flex-end;
    background: rgba(10, 31, 68, 0.7);
    color: #F4FAFF;
    border-left: 4px solid rgba(244, 250, 255, 0.35);
    animation: floatSecondary 7s ease-in-out infinite;
}

.about-visual__bubble--secondary .about-visual__bubble-label {
    color: #8BD6FF;
}

.about-visual__tagline {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: auto;
    max-width: 22rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes floatSecondary {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@media (min-width: 768px) {
    .about-visual {
        min-height: 26rem;
        padding: 3rem;
    }

    .about-visual__tagline {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .about-visual__avatar {
        top: 3rem;
        left: 3rem;
    }

    .about-visual__halo {
        top: -7rem;
        right: -5rem;
    }
}

.ai-overview {
    padding: 4rem 0;
}

.ai-overview-content {
    background: #EFF1F2;
    border-radius: 1rem;
    padding: 3rem;
}

.ai-overview-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    text-align: center;
    margin-bottom: 3rem;
}

.ai-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ai-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ai-overview-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

/* Blog Section */
.blog {
    background: #EFF1F2;
}

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

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-1rem) scale(1.05);
    box-shadow: 0 20px 40px rgba(24, 113, 201, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1) rotate(1deg);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1871C9;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: #00C1CF;
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content {
    background: linear-gradient(135deg, white 0%, rgba(239, 241, 242, 0.5) 100%);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #1871C9;
    transform: scale(1.05);
}

.blog-excerpt {
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-excerpt {
    color: #020202;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-meta {
    color: #020202;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    transition: color 0.3s ease;
}

.blog-card:hover .meta-item svg {
    color: #1871C9;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-date {
    color: #020202;
}

.blog-date svg {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-date svg {
    color: #1871C9;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1871C9;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.read-more:hover {
    color: #00C1CF;
    transform: scale(1.1);
}

.read-more svg {
    transition: transform 0.2s ease;
}

.read-more:hover svg {
    transform: translateX(0.5rem) scale(1.25);
}

.newsletter-section {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: #666;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1871C9;
    box-shadow: 0 0 0 3px rgba(24, 113, 201, 0.1);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-section {
    background: #EFF1F2;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.contact-form-section:hover {
    background: linear-gradient(135deg, #EFF1F2 0%, white 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.contact-form-section:hover .form-title {
    color: #1871C9;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #020202;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-form-section:hover .form-group label {
    color: #1871C9;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #1871C9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1871C9;
    box-shadow: 0 0 0 3px rgba(24, 113, 201, 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-item:hover {
    transform: translateX(0.5rem);
    background: #EFF1F2;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: #1871C9;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(12deg);
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
}

.info-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon svg {
    transform: scale(1.25);
}

.info-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.info-item:hover .info-label {
    color: #1871C9;
}

.info-value {
    color: #1871C9;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.info-item:hover .info-value {
    color: #00C1CF;
}

.info-description {
    color: #666;
    font-weight: 300;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.info-item:hover .info-description {
    color: #020202;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #00C1CF 0%, #5472D2 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5472D2 0%, #00C1CF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-cta:hover::before {
    opacity: 1;
}

.whatsapp-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 193, 207, 0.25);
}

.whatsapp-cta > * {
    position: relative;
    z-index: 1;
}

.whatsapp-cta svg {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover svg {
    transform: scale(1.25) rotate(12deg);
}

.whatsapp-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.whatsapp-description {
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.faq-link {
    padding: 1.5rem;
    background: #EFF1F2;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-link:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.faq-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 0.5rem;
}

.faq-description {
    color: #666;
    font-weight: 300;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.faq-link:hover .faq-description {
    color: #020202;
}

.faq-btn {
    color: #1871C9;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-btn:hover {
    color: #00C1CF;
    transform: translateX(0.5rem) scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4486BF 0%, #1871C9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-12rem, -12rem);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(12rem, 12rem);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

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

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 0;
        display: contents;
    }
}

.footer-column {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-column {
        margin-bottom: 0;
    }
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-cta {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-cta .cta-title {
    color: white;
}

.footer-cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: white;
    color: #1871C9;
    transform: translateY(-4px);
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(24, 113, 201, 0.3); }
    50% { box-shadow: 0 0 40px rgba(24, 113, 201, 0.6); }
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #EFF1F2;
}

::-webkit-scrollbar-thumb {
    background: #1871C9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00C1CF;
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #1871C9;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

    .newsletter-input {
        margin-bottom: 1rem;
    }
}

/*
   UTILITY CLASSES FOR SPACING OVERRIDES
   Use estas classes para forçar espaçamentos específicos quando necessário
   Adicione !important se ainda houver conflitos
*/

/* Padding Utilities */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2rem !important; }
.p-6 { padding: 3rem !important; }
.p-8 { padding: 4rem !important; }
.p-10 { padding: 5rem !important; }

/* Padding Y-axis */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-6 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-8 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-10 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* Padding X-axis */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-6 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* Margin Utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 2rem !important; }
.m-6 { margin: 3rem !important; }
.m-8 { margin: 4rem !important; }
.m-10 { margin: 5rem !important; }

/* Margin Y-axis */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-6 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.my-8 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.my-10 { margin-top: 5rem !important; margin-bottom: 5rem !important; }

/* Margin X-axis */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 2rem !important; margin-right: 2rem !important; }
.mx-6 { margin-left: 3rem !important; margin-right: 3rem !important; }

/* Gap Utilities */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2rem !important; }
.gap-6 { gap: 3rem !important; }
.gap-8 { gap: 4rem !important; }
.gap-10 { gap: 5rem !important; }

/* Hero spacing adjustments */
#hero.hero {
    padding-top: 1.35rem;
    padding-bottom: 0.9rem;
}

#hero .hero-content {
    padding: 1.6rem 0 1.75rem 0;
}

@media (min-width: 768px) {
    #hero.hero {
        padding-top: 1.9rem;
        padding-bottom: 1.4rem;
    }

    #hero .hero-content {
        padding: 2.15rem 0 2.25rem 0;
    }
}

@media (min-width: 1024px) {
    #hero.hero {
        min-height: auto;
        padding-top: 2.4rem;
        padding-bottom: 1.75rem;
    }

    #hero .hero-content {
        padding: 2.65rem 0 2.1rem 0;
    }
}

/* Header info alignment overrides */
@media (min-width: 768px) {
    .top-info-list {
        margin-left: auto;
        justify-content: flex-end;
    }

    .top-info-text {
        text-align: right;
        align-items: flex-end;
    }
}

/* ===== Correções da HERO no mobile ===== */
@media (max-width: 768px) {
  /* Em vez de grid, usa flex em coluna */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 2rem 0 3rem 0;
  }

  /* Garante que texto e imagem não forçam largura maior que a tela */
  .hero-text,
  .hero-image {
    width: 100%;
    min-width: 0;
  }

  .hero-image img,
  .hero-image svg {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Container geral no mobile não pode passar da tela */
  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  /* Halo lá da sessão "about" também não passa da tela */
  .about-visual__halo {
    max-width: 100%;
    overflow: hidden;
  }
}

/* Defesa extra: nunca deixar o documento ficar maior que a viewport */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== Sessão de empresas que já utilizam (carrossel infinito) ===== */
.trust-section {
  padding: 2.5rem 0;
}

.trust-indicators {
  padding: 1.5rem;
  border: 1px solid #eff1f2;
  border-radius: 1rem;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}

.trust-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trust-text {
  color: #4b5d73;
  font-weight: 300;
  margin-bottom: 1rem;
}

.trust-logos {
  overflow: hidden;
  width: 100%;
}

.trust-logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trust-scroll var(--duration, 35s) linear infinite;
  transform: translate3d(0, 0, 0);
}

.trust-logos-block {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 32px;
  align-items: center;
}

.trust-logo {
  flex: 0 0 auto;
  height: 48px;
  width: auto;
  margin: 0;
  display: block;
}

.trust-logo--boost-lg {
  height: 60px;
}

.trust-logo--boost-xl {
  height: 68px;
}

.trust-logo--boost {
  height: 56px;
}

.trust-logo--small {
  height: 42px;
}

.trust-logo--tour {
  height: 46px;
}

.trust-logo--epicur {
  background: #445478;
  padding: 6px 10px;
  border-radius: 8px;
}

.trust-logo--tail-space {
  padding-right: 32px;
}

.trust-logo--mini {
  height: 38px;
}

.trust-logo--micro {
  height: 32px;
}

@keyframes trust-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--scroll-distance)), 0, 0);
  }
}

@media (min-width: 768px) {
  .trust-title {
    font-size: 3rem;
  }
}
