@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

:root {
    /* Logo-based color palette */
    --cyan: #00D4FF;
    --cyan-dark: #0099CC;
    --blue: #4A90E2;
    --blue-dark: #2E5C8A;
    --orange: #FF6B35;
    --orange-bright: #FF8C42;
    --red: #FF4757;
    --magenta: #E63946;
    --purple: #6C5CE7;
    --purple-dark: #5A4FCF;
    --indigo: #4834D4;
    
    /* Primary colors from logo */
    --primary-color: var(--orange);
    --primary-dark: var(--red);
    --secondary-color: var(--cyan);
    --accent-color: var(--purple);
    
    /* Neutrals */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    
    /* Shadows */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.header-logo {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.header-nav a:hover {
    color: var(--orange);
}

.nav-separator {
    color: var(--text-light);
    font-weight: 300;
}

.header-cta {
    flex: 0 0 auto;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-btn svg {
    width: 18px;
    height: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--text-light);
}

.label-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.highlight-oval {
    position: relative;
    display: inline-block;
    padding: 0 8px;
}

.highlight-oval::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    opacity: 0.3;
}

.gradient-text {
    background: linear-gradient(135deg, 
        var(--cyan) 0%, 
        var(--orange) 50%,
        var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    font-weight: 900;
    text-shadow: none;
}

.gradient-text1 {
    color:#000;
}

.highlight {
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-light);
    max-width: 90%;
}

.hero-subtitle strong {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-decorative-line {
    margin: 25px 0;
    color: var(--text-dark);
    opacity: 0.2;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    width: fit-content;
}

.rating-icon {
    font-size: 2rem;
    line-height: 1;
}

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

.rating-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-text span {
    font-size: 13px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--magenta) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border-color: var(--orange);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease-out;
}

.visual-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    background-image: url('customerhappiness.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.7) 0%, rgba(232, 236, 241, 0.6) 100%);
    z-index: 1;
}

.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--cyan);
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--purple);
    top: 50%;
    right: 40%;
    animation: float 7s ease-in-out infinite;
}

.dots-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 30%;
    right: 10%;
    background-image: radial-gradient(circle, var(--text-dark) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.floating-cards {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.payment-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);*/
    padding: 20px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-top {
    top: 45%;
    right: 2%;
    width: 300px;
    padding: 25px;
}

.card-middle {
    top: 60%;
    left: 5%;
    width: 280px;
    animation-delay: 0.5s;
}

.card-bottom {
    bottom: 5%;
    right: 5%;
    width: 300px;
    animation-delay: 1s;
}

.payment-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.payment-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.payment-card .card-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.badge-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

/* Features Header */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.features-header-left {
    flex: 1;
}

.section-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title::after {
    display: none;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
}

.features-header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.btn-features-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-features-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-primary:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card-primary .feature-icon {
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-card-primary h3 {
    color: var(--white);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Button */
.feature-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    border: none;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.feature-btn-light {
    background: var(--white);
    color: var(--orange);
}

.feature-btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(255, 107, 53, 0.05) 50%,
        rgba(108, 92, 231, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    letter-spacing: -0.5px;
}

.benefits-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--orange), var(--red));
    border-radius: 10px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
    z-index: 1;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--orange), var(--red));
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefits-list li:hover::before {
    transform: scaleY(1);
}

.benefits-list li:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--orange);
}

.check-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.benefits-list li:hover .check-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.benefits-list li strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.benefits-list li p {
    color: var(--text-light);
    line-height: 1.8;
}

/* References Section */
.references {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.references-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.references-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.reference-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reference-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.reference-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.reference-card:hover .reference-image {
    transform: scale(1.05);
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reference-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.reference-link svg {
    width: 20px;
    height: 20px;
}

.reference-pdf {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ecf1 100%);
    color: var(--text-light);
}

.reference-pdf svg {
    width: 48px;
    height: 48px;
    color: var(--orange);
}

.reference-pdf span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.reference-info {
    padding: 24px;
}

.reference-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.reference-domain {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

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

.cta-box {
    background: rgba(30, 30, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, 
        rgba(108, 92, 231, 0.15) 0%,
        rgba(74, 144, 226, 0.2) 100%);
    z-index: 0;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* CTA Left Section */
.cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-demo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-signup {
    background: var(--white);
    color: var(--text-dark);
}

.btn-signup:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* CTA Right Section - Testimonial */
.cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-testimonial {
    background: rgba(20, 20, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars .star {
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

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

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    color: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--orange), var(--red), var(--purple));
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Footer Title */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-list li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

.footer-copyright strong {
    color: var(--white);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--orange);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.6;
    }

    .hero-visual {
        height: 400px;
    }

    .payment-card {
        width: 240px !important;
    }

    .card-top {
        right: 5%;
    }

    .card-middle {
        left: 0;
    }

    .card-bottom {
        right: 0;
    }
}

@media (max-width: 768px) {
    .header-nav {
        font-size: 13px;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-wrapper {
        gap: 40px;
    }

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

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

    .hero-visual {
        height: 350px;
    }

    .payment-card {
        width: 200px !important;
        padding: 15px !important;
    }

    .card-amount {
        font-size: 1.5rem !important;
    }

    .hero-rating {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .features-header {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
        max-width: 100%;
    }

    .features-header-right {
        justify-content: center;
    }

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

    .benefits-text h2 {
        font-size: 2.2rem;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-headline {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 40px 30px;
    }


    .benefits-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefits-list li .check-icon {
        margin: 0 auto;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

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

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

    .section-title {
        font-size: 1.9rem;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .benefits-text h2 {
        font-size: 1.9rem;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .references-title {
        font-size: 1.8rem;
    }

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

    .reference-image-wrapper {
        height: 180px;
    }

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

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

    .hero-logo {
        height: 120px;
    }
}

