* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
                url('img/1.png') center/cover no-repeat;
    width: 100%;
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    z-index: 1000;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    background-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: background-color, backdrop-filter;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -1px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    background: #d4af37;
    color: black;
    border-color: #d4af37;
}

.content {
    padding: 80px;
    max-width: 1400px;
    width: 100%;
    z-index: 10;
    margin-top: 40px;
}

.fade-content {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.partner-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.partner-badge {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-text {
    font-weight: 400;
    font-size: 26px;
    color: white;
}

h1 {
    color: white;
    font-size: 90px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: -2px;
}

.subtitle {
    color: white;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 900px;
}

.subtitle strong {
    font-weight: 700;
}

.content-showcase {
    position: relative;
    min-height: 500px;
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

.showcase-item {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    width: 100%;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.showcase-item.active {
    opacity: 1;
    visibility: visible;
}

.showcase-text {
    flex: 0 0 auto;
    max-width: 450px;
}

.showcase-text h2 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.showcase-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.showcase-btn {
    padding: 18px 45px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: #d4af37;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px #d4af37;
}

.showcase-visual {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 50px;
    overflow: hidden;
    max-height: 500px;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    padding-top: 0;
}

.phone-frame {
    width: 100%;
    max-width: 380px;
    height: 760px;
    background: #1a1a1a;
    border-radius: 55px;
    padding: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 0 14px #2a2a2a,
                0 0 0 16px #1a1a1a;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 0 0 22px 22px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.form-preview {
    background: white;
    height: 100%;
    padding: 55px 25px 25px;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
}

.form-preview-header {
    text-align: center;
    margin-bottom: 30px;
}

.preview-logo {
    font-size: 50px;
    margin-bottom: 12px;
}

.form-preview-header h3 {
    color: #1a3a5c;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.form-preview-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 5px;
}

.preview-nav-item {
    flex: 1;
    padding: 12px 10px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.preview-nav-item.active {
    background: white;
    color: #1a3a5c;
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.form-preview-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.preview-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a5c;
}

.preview-input {
    height: 45px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.preview-input:hover {
    border-color: #d4af37;
}

/* Chat Preview Styles */
.chat-preview {
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.chat-back {
    font-size: 24px;
    cursor: pointer;
}

.chat-avatar {
    font-size: 32px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-size: 15px;
    font-weight: 600;
}

.chat-status {
    font-size: 11px;
    opacity: 0.9;
    color: #d4af37;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f5f5f5;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-message.client {
    align-items: flex-end;
}

.chat-message.lawyer {
    align-items: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
}

.chat-message.client .message-bubble {
    background: #d4af37;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.lawyer .message-bubble {
    background: white;
    color: #1a3a5c;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 9px;
    color: #999;
    padding: 0 8px;
}

.chat-typing {
    display: flex;
    align-items: flex-start;
}

.typing-indicator {
    background: white;
    padding: 10px 14px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Calendar Preview Styles */
.calendar-preview {
    background: white;
    height: 100%;
    padding: 55px 52px 15px;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 2px;
}

.calendar-month {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
}

.calendar-navigation {
    display: flex;
    gap: 15px;
}

.calendar-navigation span {
    font-size: 20px;
    color: #d4af37;
    cursor: pointer;
    font-weight: 700;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 8px;
    padding: 0 2px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    color: #999;
    padding: 5px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 12px;
    padding: 0 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: #f5f5f5;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.today {
    background: #d4af37;
    color: white;
    font-weight: 700;
}

.calendar-day.has-event {
    background: #e8f4f8;
    color: #1a3a5c;
    font-weight: 600;
}

.calendar-day.has-event.today {
    background: #d4af37;
    color: white;
}

.event-dot {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
}

.calendar-day.today .event-dot {
    background: white;
}

.calendar-events {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.calendar-event-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 12px;
}

.calendar-event-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: white;
    padding: 12px;
    border-radius: 10px;
    border-left: 3px solid #d4af37;
}

.calendar-event-date {
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    min-width: 40px;
}

.calendar-event-info {
    flex: 1;
}

.calendar-event-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 3px;
}

.calendar-event-time {
    font-size: 11px;
    color: #666;
}

/* TV Mockup Styles */
.tv-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.tv-frame {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-screen {
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 8px #2a2a2a,
                0 0 0 10px #1a1a1a;
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.tv-stand {
    width: 180px;
    height: 65px;
    position: relative;
    margin-top: -5px;
}

.tv-stand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 38px;
    background: linear-gradient(to bottom, #333 0%, #1a1a1a 100%);
    border-radius: 0 0 10px 10px;
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Analytics Dashboard Styles */
.analytics-dashboard {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    width: 100%;
    max-width: 700px;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.dashboard-header h3 {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.dashboard-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Chart Container */
.chart-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    gap: 15px;
    padding: 0 10px;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bar {
    width: 100%;
    max-width: 60px;
    background: linear-gradient(to top, #d4af37 0%, #f4d03f 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
    min-height: 20px;
}

.bar:hover {
    background: linear-gradient(to top, #f4d03f 0%, #d4af37 100%);
    box-shadow: 0 -6px 20px rgba(212, 175, 55, 0.6);
    transform: scaleY(1.05);
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px 8px 0 0;
}

.bar-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cards {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 450px;
}

.pricing-card {
    position: absolute;
    width: 320px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.pricing-card.left {
    left: 0;
    top: 50px;
    z-index: 1;
    transform: rotate(-3deg);
}

.pricing-card.center {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 3;
}

.pricing-card.right {
    right: 0;
    top: 50px;
    z-index: 1;
    transform: rotate(3deg);
}

.pricing-card:hover {
    transform: translateY(-10px) rotate(0deg);
    z-index: 5;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.center:hover {
    transform: translateX(-50%) translateY(-10px);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    color: #1a3a5c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-subtitle {
    color: #d4af37;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 40px;
}

.card-price {
    background: #d4af37;
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 20px;
    display: inline-block;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px #d4af37;
    color: black;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.avatar:first-child {
    margin-left: 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.social-text {
    color: white;
    font-size: 16px;
}

.social-text strong {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.features {
    display: inline-flex;
    background: black;
    padding: 8px;
    border-radius: 50px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-pill {
    background: transparent;
    padding: 14px 24px;
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.8s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-pill.active {
    background: white;
    color: black;
}

.feature-pill.active .pill-progress {
    animation: fillProgress 8s linear forwards;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: #d4af37;
    border-radius: 6px;
    transform: rotate(-6deg);
    z-index: -1;
}

.feature-pill.active .feature-icon::before {
    background: black;
}

.feature-pill span {
    position: relative;
    z-index: 2;
}

.pill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    z-index: 1;
}

.feature-pill.active .pill-progress {
    background: #d4af37;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 100px 80px;
    overflow: hidden;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 90px;
    font-weight: 900;
    color: #000;
    margin: 0 auto 80px;
    max-width: 1200px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.word-drop {
    display: inline-block;
    opacity: 0;
    transform: translateY(-100px);
}

.word-drop.animate {
    animation: dropFromTop 1s ease-out forwards;
}

.word-rise {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
}

.word-rise.animate {
    animation: riseFromBottom 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-footer {
    text-align: center;
    font-size: 90px;
    font-weight: 900;
    color: #000;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    letter-spacing: -2px;
}

.word-jump-left {
    display: inline-block;
    opacity: 0;
    transform: translateX(-150px);
}

.word-jump-left.animate {
    animation: jumpFromLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.word-slide-right {
    display: inline-block;
    opacity: 0;
    transform: translateX(150px);
}

.word-slide-right.animate {
    animation: slideFromRight 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes jumpFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px) scale(0.8);
    }
    60% {
        transform: translateX(10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.benefit-card {
    background: transparent;
    border-radius: 30px;
    overflow: visible;
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

/* V-shape positioning */
.benefit-card.card-1 {
    margin-top: 0;
}

.benefit-card.card-2 {
    margin-top: 100px;
}

.benefit-card.card-3 {
    margin-top: 100px;
}

.benefit-card.card-4 {
    margin-top: 0;
}

.benefit-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px 30px 0 0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text {
    padding: 35px 30px;
    text-align: left;
    text-align: center;
}

.benefit-text h3 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* CTA Cards Section */
.cta-cards-container {
    max-width: 1400px;
    width: 100%;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.cta-card-flip {
    perspective: 1000px;
    flex: 0 1 350px;
    height: 500px;
    position: relative;
}

.flip-notice {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulseNotice 2s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@keyframes pulseNotice {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.flip-notice.desktop {
    display: block;
}

.flip-notice.mobile {
    display: none;
}

/* Desktop: hide on hover */
@media (min-width: 1025px) {
    .cta-card-flip:hover .flip-notice {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0s, visibility 0s;
    }

    .cta-card-flip:not(:hover) .flip-notice {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease 0.8s, visibility 0s 0.8s;
    }
}

/* Mobile/Tablet: hide when flipped */
@media (max-width: 1024px) {
    .cta-card-flip.flipped .flip-notice {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0s, visibility 0s;
    }

    .cta-card-flip:not(.flipped) .flip-notice {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease 0.8s, visibility 0s 0.8s;
    }
}

.cta-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.cta-card-flip.flipped .cta-card-inner {
    transform: rotateY(180deg);
}

/* Hover flip only for desktop */
@media (min-width: 1025px) {
    .cta-card-flip:hover .cta-card-inner {
        transform: rotateY(180deg);
    }
}

.cta-card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.cta-card-front {
    background: white;
}

.cta-card-back {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: rotateY(180deg);
    padding: 40px 35px;
    text-align: left;
}

.cta-card-back ul li:before {
    content: "✓ ";
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-card-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.cta-card h3 {
    color: #1a3a5c;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card-subtitle {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cta-card-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 45px;
    line-height: 1.5;
}

.cta-card-price {
    background: #d4af37;
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.card-back-title {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 20px;
}

.card-back-title:first-child {
    margin-top: 0;
}

.card-back-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.card-back-list li {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 0;
}

/* CTA Bottom Section */
.cta-bottom-section {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.cta-bottom-text {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-bottom-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.cta-bottom-btn:hover {
    background: #d4af37;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px #d4af37;
}

/* Missing Features Section */
.missing-section {
    padding: 20px;
    background: white;
    overflow: hidden;
    width: 100%;
}

.missing-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
                url('img/6.png') center/cover no-repeat;
    padding: 50px 80px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.missing-content {
    color: white;
    max-width: 800px;
}

.missing-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 150px;
    letter-spacing: -2px;
}

.missing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.missing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
    color: white;
    filter: grayscale(100%) brightness(2);
}

.cta-missing-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Testimonial Section - Cloud-like design with auto-scroll */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    width: 100%;
}

.testimonial-title {
    text-align: center;
    font-size: 72px;
    font-weight: 900;
    color: #000;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    width: max-content;
    margin-bottom: 40px;
}

.testimonial-track-left {
    animation: scrollLeft 30s linear infinite;
}

.testimonial-track-right {
    animation: scrollRight 30s linear infinite;
}

/* Pause animation on hover */
.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 450px;
    max-width: 450px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    flex-shrink: 0;
}

/* Cloud-like bubble tail */
.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 40px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(50%);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 25px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(50%);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    filter: blur(3px);
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
}

.author-info p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: white;
}

/* Infinite scroll animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 40px * 5));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-450px * 5 - 40px * 5));
    }
    100% {
        transform: translateX(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 80px;
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.faq-icon {
    text-align: center;
    margin-bottom: 30px;
    color: #d4af37;
}

.faq-icon svg {
    display: inline-block;
}

.faq-title {
    text-align: center;
    font-size: 100px;
    font-weight: 900;
    color: white;
    margin: 0 auto 80px;
    max-width: 1000px;
    line-height: 0.9;
    letter-spacing: -2px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-toggle {
    font-size: 40px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 40px;
}

.faq-answer p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.faq-footer-text {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 200px;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 100px 80px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.cta-banner-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.cta-banner-title {
    font-size: 120px;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    line-height: 1;
    letter-spacing: -3px;
    margin: 0;
}

.cta-banner-btn {
    display: inline-block;
    width: 100%;
    max-width: 1400px;
    padding: 60px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 80px;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.cta-banner-btn:hover {
    background: #d4af37;
    transform: scale(1.02);
    box-shadow: 0 15px 40px #d4af37;
}

/* Footer Section */
.footer-section {
    padding: 40px 80px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 60px;
        padding-top: 70px;
    }

    .navbar, .content {
        padding: 30px 40px;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card.card-1,
    .benefit-card.card-2,
    .benefit-card.card-3,
    .benefit-card.card-4 {
        margin-top: 0;
    }

    .features {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .feature-pill {
        padding: 12px 18px;
        font-size: 14px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .flip-notice.desktop {
        display: none;
    }

    .flip-notice.mobile {
        display: block;
    }

    .cta-cards-container {
        flex-direction: column;
        gap: 30px;
    }

    .cta-card-flip {
        flex: 1 1 auto;
        width: 100%;
        max-width: 60%;
        height: 600px;
    }

    .cta-card {
        padding: 60px 50px;
    }

    .cta-card-icon {
        font-size: 80px;
        margin-bottom: 30px;
    }

    .cta-card h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta-card-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cta-card-description {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .cta-card-price {
        font-size: 34px;
        padding: 18px 50px;
    }

    .cta-bottom-text {
        font-size: 28px;
    }

    .showcase-visual {
        display: none;
    }

    .missing-section {
        padding: 60px 40px;
    }

    .missing-container {
        padding: 80px 60px;
        border-radius: 30px;
    }

    .missing-title {
        font-size: 48px;
    }

    .testimonial-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .testimonial-card {
        min-width: 380px;
        max-width: 380px;
        padding: 30px;
    }

    .faq-section {
        padding: 80px 40px;
    }

    .faq-icon svg {
        width: 60px;
        height: 60px;
    }

    .faq-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .faq-question {
        font-size: 24px;
        padding: 30px 0;
    }

    .faq-answer p {
        font-size: 18px;
    }

    .faq-footer-text {
        font-size: 26px;
        margin-top: 60px;
    }

    .cta-banner-section {
        padding: 80px 40px;
    }

    .cta-banner-title {
        font-size: 60px;
    }

    .cta-banner-btn {
        padding: 50px;
        font-size: 24px;
        border-radius: 60px;
    }
}

@media (max-width: 667px) {
    .hero {
        min-height: 80vh;
    }

    h1 {
        font-size: 40px;
        padding-top: 40px;
    }

    .subtitle {
        font-size: 18px;
    }

    .navbar, .content {
        padding: 20px;
    }

    .cta-section {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .features {
        flex-direction: column;
    }

    .cta-bottom-text {
        font-size: 24px;
        padding: 0 20px;
    }

    .cta-bottom-btn {
        padding: 18px 50px;
        font-size: 16px;
    }

    .missing-section {
        padding: 40px 20px;
    }

    .missing-container {
        padding: 60px 30px;
        min-height: 500px;
        border-radius: 20px;
    }

    .missing-title {
        font-size: 36px;
    }

    .missing-feature {
        font-size: 18px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 36px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-icon svg {
        width: 50px;
        height: 50px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 20px;
        padding: 25px 0;
    }

    .faq-toggle {
        font-size: 30px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 30px;
    }

    .faq-footer-text {
        font-size: 20px;
        margin-top: 40px;
        padding: 0 20px;
    }

    .cta-banner-section {
        padding: 60px 20px;
    }

    .cta-banner-container {
        gap: 40px;
    }

    .cta-banner-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .cta-banner-btn {
        padding: 40px 30px;
        font-size: 18px;
        border-radius: 50px;
    }

    .footer-section {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #d4af37;
}

.modal-content h2 {
    background: #000;
    color: #d4af37;
    padding: 30px 40px;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-size: 32px;
    font-weight: 900;
}

.modal-body {
    padding: 40px;
    color: #000;
}

.modal-body h3 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.modal-body ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.modal-body ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

.modal-body strong {
    color: #000;
    font-weight: 700;
}

/* Privacy Settings Specific Styles */
.privacy-option {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.privacy-option:last-of-type {
    border-bottom: none;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.privacy-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #d4af37;
}

.privacy-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.privacy-description {
    margin-left: 34px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.privacy-save-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-save-btn:hover {
    background: #000;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.privacy-note {
    margin-top: 20px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 667px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-content h2 {
        padding: 25px 20px;
        font-size: 24px;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .modal-body h3 {
        font-size: 18px;
    }

    .modal-body p {
        font-size: 15px;
    }

    .modal-close {
        right: 15px;
        top: 15px;
        font-size: 30px;
    }

    .privacy-label {
        font-size: 16px;
    }

    .privacy-save-btn {
        width: 100%;
        padding: 15px;
    }

    /* Benefits Section Mobile */
    .benefits-section {
        padding: 60px 40px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-image {
        height: 280px;
        border-radius: 30px;
    }

    .benefit-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .benefit-text h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
        padding: 0 20px;
    }

    .section-footer {
        font-size: 24px;
        padding: 0 20px;
    }

    /* Hero Section Mobile */
    .partner-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px 20px;
    }

    .partner-logo-img {
        width: 80px;
    }

    .partner-text {
        font-size: 13px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 16px 40px;
    }

    .social-proof {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .avatars {
        justify-content: center;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Content Showcase Mobile */
    .content-showcase {
        padding: 30px 20px;
    }

    .showcase-item {
        flex-direction: column;
        gap: 30px;
    }

    .showcase-text h2 {
        font-size: 28px;
    }

    .showcase-text p {
        font-size: 16px;
    }

    .showcase-btn {
        font-size: 14px;
        padding: 14px 35px;
    }

    .showcase-visual {
        display: none;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 400px;
        padding: 30px 25px;
    }

    .card-icon {
        font-size: 50px;
    }

    .pricing-card h3 {
        font-size: 24px;
    }

    .card-price {
        font-size: 26px;
    }

    /* CTA Cards Mobile */
    .cta-cards-container {
        gap: 30px;
    }

    .cta-card-flip {
        max-width: 100%;
    }

    .cta-card {
        padding: 35px 25px;
    }

    .cta-card-icon {
        font-size: 50px;
    }

    .cta-card h3 {
        font-size: 26px;
    }

    .cta-card-price {
        font-size: 28px;
    }

    .card-back-title {
        font-size: 16px;
    }

    .card-back-list li {
        font-size: 14px;
    }

    /* Testimonial Mobile */
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 32px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-icon svg {
        width: 50px;
        height: 50px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-toggle {
        font-size: 30px;
        margin-left: 10px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 15px 0;
    }

    .faq-footer-text {
        font-size: 18px;
        margin-top: 40px;
        padding: 0 20px;
    }

    /* CTA Banner Mobile */
    .cta-banner-section {
        padding: 60px 20px;
    }

    .cta-banner-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-banner-btn {
        padding: 35px 40px;
        font-size: 18px;
        border-radius: 50px;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-link {
        font-size: 11px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .navbar {
        padding: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .content {
        padding: 15px;
    }

    .partner-badge {
        padding: 10px 15px;
    }

    .partner-logo-img {
        width: 60px;
    }

    .partner-text {
        font-size: 11px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 14px 30px;
        border-radius: 30px;
    }

    .avatar {
        width: 30px;
        height: 30px;
    }

    .social-text span {
        font-size: 12px;
    }

    .social-text strong {
        font-size: 14px;
    }

    .feature-pill {
        padding: 12px 20px;
        font-size: 13px;
    }

    .feature-icon {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-footer {
        font-size: 36px;
    }

    .benefit-image {
        height: 250px;
    }

    .benefit-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .benefit-text h3 {
        font-size: 18px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-card h3 {
        font-size: 22px;
    }

    .cta-card-subtitle {
        font-size: 13px;
    }

    .cta-card-price {
        font-size: 24px;
    }

    .cta-bottom-text {
        font-size: 20px;
    }

    .missing-title {
        font-size: 28px;
    }

    .missing-feature {
        font-size: 16px;
    }

    .feature-icon-circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 0;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-footer-text {
        font-size: 16px;
    }

    .cta-banner-title {
        font-size: 28px;
    }

    .cta-banner-btn {
        padding: 30px 35px;
        font-size: 16px;
    }
}
