/* 
    Gudsoft Digital Solution - CSS Styling System
    Branding: Modern SaaS, Clean White with Blue, Orange and Purple Gradients
*/

/* ----------------------------------------------------
   1. Design System Variables & Resets
---------------------------------------------------- */
:root {
    --primary: #0066FF;
    --primary-dark: #0A2540;
    --accent-orange: #FF6B00;
    --accent-purple: #7000FF;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    --shadow-premium: 0 20px 40px -15px rgba(0, 102, 255, 0.12);
    --radius-lg: 20px;
    --radius-md: 12px;
    --font-headers: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.w-full {
    width: 100%;
}

/* ----------------------------------------------------
   2. Typography & Text Effects
---------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    color: var(--primary-dark);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-title {
    display: inline-block;
    font-family: var(--font-headers);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    background: rgba(0, 102, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ----------------------------------------------------
   3. Buttons & Badges
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: var(--bg-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.25);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid rgba(0, 102, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.04);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    filter: brightness(1.05);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(112, 0, 255, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1.1rem;
    animation: pulse 1.5s infinite;
}

.badge-text {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
}

/* Glassmorphism card template */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.08);
}

/* ----------------------------------------------------
   4. Header & Navigation Styles
---------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.06);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 54px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-headers);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-dark);
    opacity: 0.85;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1002;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 24px;
}

.mobile-nav-link {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

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

/* ----------------------------------------------------
   5. Hero Section Styles
---------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 110px 0 60px;
    background: var(--bg-white);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, rgba(112,0,255,0.04) 50%, rgba(255,107,0,0.02) 100%);
    z-index: 1;
    pointer-events: none;
    filter: blur(100px);
}

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

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

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 36px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary-dark);
}

.meta-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-circle-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(112,0,255,0.1) 0%, rgba(0,102,255,0.05) 50%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.12);
}

/* Floating UI elements */
.floating-ui-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    z-index: 10;
}

.ui-card-1 {
    top: 15%;
    left: -8%;
    animation: floatVertical 4s ease-in-out infinite;
}

.ui-card-2 {
    bottom: 15%;
    right: -8%;
    animation: floatVertical 4s ease-in-out infinite 2s;
}

.ui-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ui-title {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.ui-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   6. Statistics Section
---------------------------------------------------- */
.stats-section {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 102, 255, 0.04);
    border-bottom: 1px solid rgba(0, 102, 255, 0.04);
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-headers);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.stat-divider {
    display: none;
    width: 1px;
    height: 50px;
    background-color: rgba(0, 102, 255, 0.1);
}

/* ----------------------------------------------------
   7. Features Grid Section
---------------------------------------------------- */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.feature-card {
    padding: 32px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(112, 0, 255, 0.05) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

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

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   8. Perfect For Section (Industries)
---------------------------------------------------- */
.perfect-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.industry-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 102, 255, 0.04);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.02);
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.industry-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.ind-icon {
    font-size: 1.15rem;
}

/* ----------------------------------------------------
   9. Pricing Section
---------------------------------------------------- */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.pricing-bg-decor {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(112,0,255,0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: linear-gradient(135deg, #0A2540 0%, #061524 100%);
    border: 2px solid rgba(112, 0, 255, 0.3);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.25);
    padding: 48px 32px;
    max-width: 550px;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    background: linear-gradient(135deg, var(--accent-orange), #FF9E00);
    color: var(--bg-white);
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 45px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing-plan-title {
    color: var(--bg-white);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.pricing-plan-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pricing-price-container {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
}

.price-new {
    font-family: var(--font-headers);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--bg-white);
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.divider-pricing {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #25D366;
    flex-shrink: 0;
}

.pricing-card #pricing-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border: none;
}

/* ----------------------------------------------------
   10. Trust Section
---------------------------------------------------- */
.trust-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.trust-content {
    max-width: 600px;
}

.trust-checklist {
    list-style: none;
    margin-top: 32px;
}

.trust-checklist li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.check-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-graphics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-badge-card {
    padding: 32px;
}

.badge-icon-large {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.trust-badge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.trust-badge-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   11. Portfolio Carousel Section
---------------------------------------------------- */
.portfolio-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.08);
    background-color: var(--bg-light);
}

.carousel-track {
    list-style: none;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: grab;
}

.portfolio-card:active {
    cursor: grabbing;
}

.portfolio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.3) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: var(--transition-smooth);
}

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

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

.portfolio-info {
    color: var(--bg-white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* Nav Arrows */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-button:hover {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.carousel-button-left {
    left: -22px;
}

.carousel-button-right {
    right: -22px;
}

/* Pagination Dots */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.15);
    transition: var(--transition-smooth);
}

.carousel-indicator.current-indicator {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Live Launched Projects Grid */
.live-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.live-portfolio-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.02);
}

.live-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.15);
}

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

.live-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(112, 0, 255, 0.1) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.live-card-title {
    font-family: var(--font-headers);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.live-card-tag {
    font-size: 0.75rem;
    padding: 2px 8px;
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary);
    border-radius: 12px;
    display: inline-block;
    margin-top: 4px;
    font-weight: 500;
}

.live-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 16px;
}

.live-card-link:hover {
    color: var(--primary-dark);
}

/* ----------------------------------------------------
   12. Testimonials
---------------------------------------------------- */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    padding: 36px;
}

.stars {
    color: #FFC107;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
}

.client-name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   13. FAQ Accordion Section
---------------------------------------------------- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-accordion-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-headers);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
}

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

.faq-icon-plus {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon-plus::before, .faq-icon-plus::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.faq-icon-plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon-plus::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon-plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-plus::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------------------------------------------
   14. Final CTA Section
---------------------------------------------------- */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #061524 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(112,0,255,0.08) 0%, rgba(0,102,255,0.04) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-title {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* ----------------------------------------------------
   15. Footer Section
---------------------------------------------------- */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.logo-img-footer {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-about {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-links-col h4 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 4px;
}

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

.footer-bottom {
    border-top: none;
    padding-top: 0;
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
    text-align: center;
}

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

.footer-meta-links a:hover {
    color: var(--bg-white);
}

/* ----------------------------------------------------
   16. Lead Generation Popup Modal
---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 16px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 36px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: var(--transition-bounce);
    background: var(--bg-white);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--primary-dark);
}

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

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 37, 64, 0.15);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: none;
}

/* Success State in Modal */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: scaleUp 0.4s ease;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.success-actions .btn {
    flex: 1;
}

/* ----------------------------------------------------
   17. Floating CTA Buttons (Mobile Responsive)
---------------------------------------------------- */
.floating-ctas-container-left {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: var(--bg-white);
    transition: var(--transition-bounce);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-wa {
    background-color: #25D366;
}

.float-call {
    background-color: var(--primary);
}

.float-svg {
    width: 26px;
    height: 26px;
}

.float-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--primary-dark);
    border: none;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.float-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.float-scroll-top:hover {
    background-color: var(--primary);
    transform: scale(1.05) translateY(-3px);
}

/* ----------------------------------------------------
   18. Animations & Keyframes
---------------------------------------------------- */
@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ----------------------------------------------------
   19. Responsive Layout Media Queries (Mobile-first)
---------------------------------------------------- */

/* Small Devices / Tablets (min-width: 576px) */
@media (min-width: 576px) {
    .hero-ctas {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Medium Devices (min-width: 768px) */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-meta-grid {
        gap: 16px 32px;
    }
    
    /* Stats */
    .stats-container {
        grid-template-columns: repeat(5, auto);
        justify-content: space-between;
    }
    
    .stat-divider {
        display: block;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Perfect For */
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Trust */
    .trust-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Large Devices (min-width: 992px) */
@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    
    .hero-section {
        padding: 130px 0 80px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Perfect For */
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ----------------------------------------------------
   20. Policy Page Styles
---------------------------------------------------- */
.policy-hero {
    padding: 110px 0 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(112, 0, 255, 0.02) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 102, 255, 0.05);
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.policy-body {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.policy-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content-wrapper h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--primary-dark);
}

.policy-content-wrapper p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.7;
}

.policy-content-wrapper ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.policy-content-wrapper li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.6;
}
