:root {
    --primary-purple: #4B0FA3;
    --primary-purple-light: rgba(75, 15, 163, 0.08);
    --dark-purple: #2D006B;
    --accent-yellow: #FFC400;
    --accent-yellow-hover: #e6b000;
    --light-bg: #F8F8FA;
    --white: #FFFFFF;
    --text-main: #1E1E1E;
    --text-secondary: #555555;
    --border-color: #EAEAEA;
    
    --grad-premium: linear-gradient(135deg, #2D006B 0%, #4B0FA3 100%);
    --grad-highlight: linear-gradient(135deg, #4B0FA3 0%, #FFC400 100%);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(45, 0, 107, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 0, 107, 0.12);
    --shadow-hover: 0 25px 70px rgba(45, 0, 107, 0.18);
    
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-purple);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.text-purple { color: var(--primary-purple); }
.text-yellow { color: var(--accent-yellow); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.bg-light { background-color: var(--light-bg); }
.bg-purple { background: var(--grad-premium); color: var(--white); }
.bg-purple h2, .bg-purple h3, .bg-purple p { color: var(--white); }
.section-padding { padding: 120px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    gap: 12px;
    text-align: center;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 5px;
    font-size: 11px;
    transition: var(--transition-smooth);
}

.btn-primary .btn-icon {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary .btn-icon {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

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

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-purple);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* Pill Badges */
.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid transparent;
}
.pill-badge.purple-outline {
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    border-color: rgba(75, 15, 163, 0.15);
}

.hero-badge {
    background: rgba(75, 15, 163, 0.05) !important;
    border: 1px solid rgba(75, 15, 163, 0.15) !important;
    font-size: 12px;
    padding: 10px 22px;
}
.hero-badge i {
    margin-right: 10px;
    color: var(--accent-yellow);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-purple);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.follow-text {
    opacity: 0.9;
    margin-right: 5px;
}

.top-socials {
    display: flex;
    gap: 15px;
}
.top-socials a {
    color: var(--white);
    opacity: 0.9;
}
.top-socials a:hover { color: var(--accent-yellow); transform: translateY(-2px); }

/* Header */
.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

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

.logo-text {
    font-size: 26px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-tagline {
    display: block;
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin-left: 20px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    padding: 10px 0;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-menu a i {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu > li:hover > a::after, 
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu > li:hover > a, 
.nav-menu a.active {
    color: var(--accent-yellow);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-radius: var(--radius-sm);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border: 1px solid var(--border-color);
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 25px;
    text-transform: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0;
}

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

.dropdown-menu a:hover {
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    padding-left: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--dark-purple);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--primary-purple);
}

.search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--dark-purple);
}
.search-btn:hover { border-color: var(--primary-purple); color: var(--primary-purple); }

/* Hero Section */
.hero-section {
    padding: 80px 0 140px;
    background: #FDFDFD;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 50%; height: 120%;
    background: radial-gradient(ellipse at center, rgba(75, 15, 163, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%; right: 20%;
    width: 300px; height: 300px;
    background: var(--accent-yellow);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(32px, 4.5vw, 56px);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 95%;
    line-height: 1.8;
}

.hero-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.hero-list li i {
    color: var(--primary-purple);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    height: 550px;
    background: var(--grad-premium);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.5;
}

.hero-image-wrapper > * {
    position: relative;
    z-index: 2;
}

.exp-badge {
    position: absolute;
    top: -30px; right: -30px;
    background: var(--white);
    color: var(--dark-purple);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    border: 1px solid var(--border-color);
}
.exp-badge strong { display: block; font-size: 42px; font-family: var(--font-heading); color: var(--primary-purple); line-height: 1; margin-bottom: 5px; }
.exp-badge span { font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }

/* Stats Strip */
.stats-strip {
    background-color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}
.stats-strip .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    border: 1px solid var(--border-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
}
.stat-item i {
    font-size: 40px;
    color: var(--primary-purple);
    background: var(--primary-purple-light);
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
}
.stat-info h3 {
    font-size: 36px;
    margin-bottom: 2px;
    color: var(--text-main);
}
.stat-info p {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 20px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.explore-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}
.explore-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-purple-light);
}
.explore-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.explore-card:hover .explore-icon {
    background: var(--primary-purple);
    color: var(--white);
}
.explore-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-purple);
}
.explore-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--grad-highlight);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--primary-purple-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon-wrap {
    background: var(--primary-purple);
}
.service-icon {
    font-size: 30px;
    color: var(--primary-purple);
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
    color: var(--white);
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
    min-height: 75px;
}
.service-link {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-link:hover { gap: 12px; color: var(--dark-purple); }

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 0;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}
.feature-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}
.feature-icon-wrap {
    flex-shrink: 0;
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.feature-item i {
    font-size: 24px;
    color: var(--accent-yellow);
}
.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}
.feature-item p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Trust Badges Section */
.trust-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}
.trust-badges-wrap .pill-badge {
    font-size: 15px;
    padding: 12px 28px;
    border: none;
    margin-bottom: 0;
}
.trust-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-purple);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
}
.about-visual i {
    font-size: 150px;
    color: var(--primary-purple);
    opacity: 0.1;
}
.about-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}
.about-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}
.about-content p:last-of-type {
    margin-bottom: 40px;
}

/* Why Choose Us Visual */
.why-visual {
    background: var(--accent-yellow);
    border-radius: var(--radius-lg);
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.why-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
}
.why-visual-inner i {
    font-size: 150px;
    opacity: 0.9;
}

/* Startup Section */
.startup-box {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.startup-box h2 {
    font-size: 38px;
    margin-bottom: 25px;
}
.startup-box p.startup-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.startup-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.startup-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.startup-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.startup-feature-icon i {
    font-size: 24px;
}
.startup-feature-item span {
    font-weight: 600;
    font-size: 16px;
}
.startup-call {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-purple);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}
.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    text-align: center;
}
.process-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.process-num {
    width: 60px; height: 60px;
    background: var(--white);
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 10px var(--white);
}
.process-card:hover .process-num {
    background: var(--primary-purple);
    color: var(--white);
}
.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.process-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.quote-icon {
    position: absolute;
    top: 30px; right: 30px;
    font-size: 40px;
    color: var(--primary-purple-light);
}
.stars { color: var(--accent-yellow); margin-bottom: 20px; font-size: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    min-height: 100px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.client-avatar {
    width: 50px; height: 50px;
    background: var(--primary-purple-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px; color: var(--primary-purple);
}
.client-details h5 { font-size: 16px; margin-bottom: 4px; color: var(--text-main); }
.client-details span { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

/* CTA Band */
.cta-band {
    background: var(--grad-premium);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-band::after {
    content: '\f135';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 250px;
    position: absolute;
    right: -20px;
    bottom: -80px;
    color: rgba(255, 196, 0, 0.08);
    transform: rotate(-45deg);
    pointer-events: none;
}
.cta-content { max-width: 600px; }
.cta-content h2 { font-size: 40px; margin-bottom: 15px; color: var(--white); }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.7; }
.cta-list { display: flex; gap: 25px; margin-top: 30px; color: white; flex-wrap: wrap; font-size: 16px; font-weight: 500; }
.cta-list i { color: var(--accent-yellow); margin-right: 8px; }
.cta-buttons { display: flex; gap: 20px; position: relative; z-index: 1; flex-shrink: 0; }

/* Footer */
.footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 100px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}
.footer-logo { font-size: 32px; font-weight: 800; font-family: var(--font-heading); margin-bottom: 25px; letter-spacing: -1px; }
.footer-logo span { color: var(--accent-yellow); }
.footer-about { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 30px; line-height: 1.8; max-width: 350px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.footer-socials a:hover { background: var(--accent-yellow); color: var(--dark-purple); transform: translateY(-3px); }

.footer-title { font-size: 20px; margin-bottom: 30px; color: var(--white); }
.footer-links li { margin-bottom: 16px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.7); font-size: 15px; display: flex; align-items: center; }
.footer-links a:hover { color: var(--accent-yellow); transform: translateX(5px); }

.footer-contact-links {
    margin-bottom: 25px;
}
.footer-contact-links i {
    color: var(--accent-yellow);
    margin-right: 8px;
}
.footer-contact-links li i.fa-map-marker-alt {
    width: 14px;
}
.newsletter-box .footer-title {
    margin-bottom: 10px;
}
.newsletter-box p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 20px; }
.newsletter-form { display: flex; flex-direction: column; gap: 15px; }
.newsletter-form input {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255,255,255,0.1);
}
.newsletter-form button { width: 100%; padding: 16px; }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 1px;
}
.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Inner Pages General */
.page-hero {
    background: var(--light-bg);
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: var(--accent-yellow);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}
.pricing-card.popular {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
    position: relative;
}
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    padding: 5px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.price {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-purple);
    margin: 25px 0;
    line-height: 1;
}
.price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}
.pricing-features {
    text-align: left;
    margin: 30px 0 40px;
}
.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
}
.pricing-features i {
    color: var(--primary-purple);
    font-size: 18px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}
.portfolio-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}
.portfolio-img {
    height: 250px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary-purple);
    opacity: 0.3;
}
.portfolio-info {
    padding: 30px;
}
.portfolio-category {
    color: var(--primary-purple);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}
.portfolio-title {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}
.blog-img {
    height: 220px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary-purple);
    opacity: 0.3;
}
.blog-content {
    padding: 30px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}
.blog-meta i {
    color: var(--accent-yellow);
    margin-right: 6px;
}
.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info-card {
    background: var(--grad-premium);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}
.contact-info-text h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 18px;
}
.contact-info-text p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 25px;
}
.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
    background: var(--light-bg);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(75, 15, 163, 0.1);
}
textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .stats-strip .container { padding: 40px 20px; }
    .pricing-grid, .portfolio-grid, .blog-grid, .explore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-list { text-align: left; max-width: 600px; margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { height: 400px; }
    .cta-band { flex-direction: column; text-align: center; gap: 40px; padding: 50px 40px; }
    .cta-list { justify-content: center; }
    
    .mobile-menu-btn { display: block; z-index: 1002; position: relative; }
    
    .menu-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(45, 0, 107, 0.4);
        backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 80px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu > li {
        width: 100%;
        padding: 0;
        border-bottom: none;
        text-align: center;
    }
    .nav-menu a {
        padding: 12px 20px;
        font-size: 18px;
        justify-content: center;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-bg);
        display: none;
        padding: 10px 0;
        margin-top: 10px;
        border-radius: var(--radius-sm);
    }
    .nav-menu > li.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 350px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-header { padding: 15px 0; }
    .logo-text { font-size: 22px; }
    .logo-icon { width: 36px; height: 36px; }
    .logo-icon i { font-size: 16px; }
    .logo-tagline { font-size: 9px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { flex-direction: column; text-align: center; gap: 10px; }
    .stat-item i { width: 60px; height: 60px; font-size: 28px; margin: 0 auto; }
    .stat-info h3 { font-size: 28px; }
    .stat-info p { font-size: 12px; }
    
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 15px; }
    
    .features-grid { grid-template-columns: 1fr; }
    .services-grid, .testimonials-grid, .process-grid, .pricing-grid, .portfolio-grid, .blog-grid, .explore-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-about { margin: 0 auto 30px; }
    .footer-socials { justify-content: center; }
    .footer-links a, .footer-links span { justify-content: center; }
    
    .hero-list { grid-template-columns: 1fr; }
    .hero-buttons, .cta-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; padding: 16px 20px; }
    .stats-strip { margin-top: 0; padding: 30px 0; }
    .stats-strip .container { padding: 30px 20px; }
    .exp-badge { top: -20px; right: 10px; transform: scale(0.7); transform-origin: top right; }
    
    .contact-info-card { padding: 30px 20px; }
    .contact-form { padding: 30px 20px; }
    
    .page-hero { padding: 60px 0 40px; }
    .page-hero h1 { font-size: 32px; }
    .page-hero p { font-size: 15px; }
    
    .price { font-size: 42px; }
    .pricing-card { padding: 30px 20px; }
    .service-card { padding: 30px 20px; }
}
