 /* --- DARK PROFESSIONAL COLOR TONE (indigo/emerald) --- */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
     background-color: #0c0f17;
     color: #e2e8f0;
     line-height: 1.5;
     scroll-behavior: smooth;
     overflow-x: hidden;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 2rem;
     width: 100%;
 }

 /* === COLOR VARIABLES === */
 :root {
     --primary-light: #a5b4fc;
     /* indigo-300 */
     --primary-main: #818cf8;
     /* indigo-400 */
     --primary-dark: #6366f1;
     /* indigo-500 */
     --accent-emerald: #34d399;
     /* emerald-400 */
     --accent-cyan: #00f2ff;
     /* cyan */
     --accent-blue: #0072ff;
     /* blue */
     --border-gray: #2d3345;
     /* refined border */
     --card-bg: #151b28;
     /* rich dark card */
     --bg-deep: #0c0f17;
     --color-blue: #818cf8;
     --whatsapp-green: #25D366;
 }

 /* --- TYPOGRAPHY HIERARCHY --- */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'General Sans', 'Inter', sans-serif;
     font-weight: 600;
     letter-spacing: -0.02em;
     color: #ffffff;
 }

 h1 {
     font-size: 2.8rem;
     font-weight: 700;
     line-height: 1.1;
 }

 h2 {
     font-size: 3.2rem;
     font-weight: 700;
 }

 h3 {
     font-size: 1.6rem;
     font-weight: 600;
 }

 @media (max-width: 768px) {
     h1 {
         font-size: 2.5rem;
     }

     h2 {
         font-size: 2rem;
     }

     h3 {
         font-size: 1.4rem;
     }
 }

 @media (max-width: 480px) {
     h1 {
         font-size: 2rem;
     }
 }

 /* --- FIXED CONTACT BUTTON --- */
 .fixed-contact {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     background: var(--primary-dark);
     color: white;
     padding: 1rem 1.8rem;
     border-radius: 60px;
     font-weight: 600;
     text-decoration: none;
     border: 1px solid var(--primary-main);
     z-index: 999;
     display: flex;
     align-items: center;
     gap: 0.6rem;
     transition: 0.2s;
     box-shadow: none;
     font-size: 1rem;
 }

 .fixed-contact:hover {
     background: #4f46e5;
     border-color: var(--primary-light);
     transform: translateY(-2px);
 }

 a {
     text-decoration: none;
 }

 /* --- NAVIGATION --- */
 nav {
     padding: 1rem 0;
     position: sticky;
     top: 0;
     background: #0c0f17;
     border-bottom: 1px solid var(--border-gray);
     z-index: 100;
     width: 100%;
 }

 .nav-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     position: relative;
 }

 .d-none {
     display: none !important;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .logo-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, var(--primary-dark), #4f46e5);
     border-radius: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
 }

 .logo-icon>i {
     font-size: 1.5rem;
     color: white;
 }

 .logo-text {
     font-size: 1.8rem;
     font-weight: 700;
     letter-spacing: -0.03em;
     color: white;
 }

 .logo-text>span {
     color: var(--primary-main);
 }

 @media (max-width: 480px) {
     .logo-icon {
         width: 35px;
         height: 35px;
     }

     .logo-icon>i {
         font-size: 1.2rem;
     }

     .logo-text {
         font-size: 1.5rem;
     }
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 2.5rem;
 }

 .nav-links>a {
     text-decoration: none;
     color: #e0e7ff;
     font-weight: 500;
     font-size: 0.95rem;
     transition: color 0.1s;
     position: relative;
     font-family: 'Inter', sans-serif;
 }

 .nav-links>a::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--primary-main);
     transition: width 0.15s;
 }

 .nav-links>a:hover {
     color: #ffffff;
 }

 .nav-links>a:hover::after {
     width: 100%;
 }

 .nav-right {
     display: flex;
     gap: 1rem;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.6rem 1.4rem;
     border-radius: 8px;
     font-weight: 600;
     font-size: 0.9rem;
     text-decoration: none;
     transition: 0.15s ease;
     border: 1px solid transparent;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
 }

 .btn-primary {
     background: var(--primary-dark);
     color: white;
     border: 1px solid var(--primary-main);
 }

 .btn-primary:hover {
     background: #4f46e5;
     border-color: var(--primary-light);
 }

 .btn-outline {
     background: transparent;
     color: #e0e7ff;
     border: 1px solid #3f4a66;
 }

 .btn-outline:hover {
     border-color: var(--primary-main);
     background: #1f293d;
 }

 .btn-primary.cta-btn {
     padding: 1.2rem 2.5rem;
     font-size: 1.1rem;
     background: linear-gradient(135deg, var(--primary-main) 0%, #1b1ea8 100%);
     color: #fff;
     border-radius: 50px;
     font-weight: 700;
     box-shadow: 0 10px 20px rgb(0 11 255 / 20%);
 }

 .btn-primary.cta-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px rgb(28 0 255 / 30%);
 }

 .btn-secondary {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 1.2rem 2.5rem;
     border-radius: 60px;
     font-weight: 600;
     text-decoration: none;
     border: 1px solid rgba(255, 255, 255, 0.2);
     background: transparent;
     color: #fff;
     font-size: 1.2rem;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     border-color: var(--primary-main);
     background: #1f293d;
     transform: translateY(-2px);
 }

 /* mobile toggle */
 .mobile-menu-toggle {
     display: none;
     font-size: 1.8rem;
     color: #cbd5e1;
     cursor: pointer;
     z-index: 101;
 }

 /* --- RESPONSIVE NAVIGATION --- */
 @media (max-width: 900px) {
     .container {
         padding: 0 1.5rem;
     }

     .nav-flex {
         justify-content: space-between;
     }

     .mobile-menu-toggle {
         display: block;
         order: 2;
     }

     .nav-right {
         display: none;
         order: 3;
         width: 100%;
         flex-direction: column;
         align-items: center;
         gap: 1rem;
         margin-top: 1.5rem;
     }

     .nav-links {
         display: none;
         order: 3;
         width: 100%;
         flex-direction: column;
         background: #151b28;
         padding: 1.5rem 0;
         border-radius: 12px;
         border: 1px solid var(--border-gray);
         margin-top: 1rem;
         gap: 1rem;
     }

     .nav-links.show {
         display: flex;
     }

     .nav-links.show+.nav-right {
         display: flex;
     }

     .nav-links>a {
         padding: 0.5rem 0;
         width: 100%;
         text-align: center;
     }

     .nav-links>a::after {
         display: none;
     }

     .logo {
         order: 1;
     }
 }

 /* --- HERO SECTION --- */
 .hero {
     padding: 7rem 0 5rem;
     border-bottom: 1px solid var(--border-gray);
     position: relative;
     isolation: isolate;
     overflow: hidden;
     background: #0d101a;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(var(--border-gray) 1px, transparent 1px),
         linear-gradient(90deg, var(--border-gray) 1px, transparent 1px);
     background-size: 40px 40px;
     opacity: 0.15;
     pointer-events: none;
     z-index: -1;
 }

 .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
         radial-gradient(circle at 90% 70%, rgba(52, 211, 153, 0.1) 0%, transparent 55%);
     z-index: -1;
     pointer-events: none;
 }

 .hero>.hero-content {
     max-width: 850px;
     margin: 0 auto;
     text-align: center;
     position: relative;
     z-index: 2;
 }

 .badge {
     display: inline-block;
     background: rgba(31, 42, 63, 0.7);
     backdrop-filter: blur(4px);
     color: var(--primary-light);
     font-size: 0.85rem;
     font-weight: 600;
     padding: 0.4rem 1.4rem;
     border-radius: 40px;
     margin-bottom: 2rem;
     border: 1px solid #3f5280;
     letter-spacing: 0.3px;
     font-family: 'Inter', sans-serif;
 }

 .hero-sub {
     font-size: 1.25rem;
     color: #cbd5e8;
     max-width: 700px;
     margin: 0 auto 2.5rem;
     font-family: 'Inter', sans-serif;
     margin-top: 15px;
 }

 .highlight-reveal {
     color: #818cf8;
     position: relative;
     display: inline-block;
     padding-bottom: 12px;
 }

 .highlight-reveal::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 12px;
     /* A clean, solid yellow hand-drawn swoop */
     background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,15 Q25,5 50,15 T100,15" stroke="%23818cf8" stroke-width="5" fill="none" stroke-linecap="round"/></svg>');
     background-repeat: no-repeat;
     background-size: 100% 100%;
 }

 .hero-sub>strong {
     color: #818cf8;
     font-weight: 600;
 }

 .hero-actions {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .hero-badge {
     display: inline-block;
     background: #1f2a3f;
     color: var(--primary-light);
     font-size: 0.8rem;
     font-weight: 600;
     padding: 0.3rem 1.2rem;
     border-radius: 40px;
     margin-bottom: 1.5rem;
     border: 1px solid #3f5280;
 }

 .hero-features {
     margin-top: 2.2rem;
     display: flex;
     gap: 2rem;
     justify-content: center;
     color: #a5b4cb;
     font-size: 0.9rem;
     flex-wrap: wrap;
 }

 .hero-features span i.fa-wordpress {
     color: #21759b;
 }

 .hero-features span i.fa-check,
 .hero-features span i.fa-infinity {
     color: var(--primary-main);
 }

 @media (max-width: 768px) {
     .hero {
         padding: 5rem 0 4rem;
     }

     .hero-sub {
         font-size: 1.1rem;
         padding: 0 1rem;
     }

     .badge {
         font-size: 0.75rem;
         padding: 0.3rem 1rem;
     }
 }

 @media (max-width: 480px) {
     .hero-actions {
         flex-direction: column;
         align-items: stretch;
         padding: 0 1rem;
     }

     .hero-actions>.btn {
         justify-content: center;
     }
 }

 /* --- HIGHLIGHTS SECTION --- */
 .highlights {
     padding: 6rem 0;
     background: var(--bg-deep);
     position: relative;
     overflow: hidden;
 }

 .highlights::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 .highlights .card h3 {
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .highlights>.container>.highlights-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .highlights-header>p {
     color: #b0bedb;
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto;
     margin-top: 1.3rem;
 }

 .highlights>.container>.grid-3 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     position: relative;
     z-index: 2;
 }

 .grid-3>.card {
     background: linear-gradient(145deg, var(--card-bg), #101624);
     border: 1px solid var(--border-gray);
     border-radius: 24px;
     padding: 2.5rem 2rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-main), var(--accent-emerald));
     opacity: 0;
     transition: opacity 0.3s;
 }

 .card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-main);
     box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
 }

 .card:hover::before {
     opacity: 1;
 }

 .card>.card-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(52, 211, 153, 0.1));
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.8rem;
     border: 1px solid var(--border-gray);
 }

 .card-icon>i {
     font-size: 2.5rem;
     color: var(--primary-main);
 }

 .card>p {
     color: #acb8d0;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .card>.card-feature {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     color: #b0bedb;
     font-size: 0.95rem;
     padding: 0.5rem 0;
     border-top: 1px dashed var(--border-gray);
 }

 .card-feature>i {
     color: var(--accent-cyan);
     font-size: 1rem;
 }

 .card-feature:last-child {
     border-bottom: 1px dashed var(--border-gray);
 }

 @media (max-width: 768px) {
     .highlights-header>p {
         font-size: 1rem;
     }

     .grid-3>.card {
         padding: 2rem 1.5rem;
     }
 }

 /* --- PROBLEM SOLUTION CATCHY SECTION --- */
 .problem-solution-catchy {
     padding: 6rem 0;
     background: linear-gradient(145deg, #0a0e17, #0d121f);
     border-top: 1px solid var(--border-gray);
     border-bottom: 1px solid var(--border-gray);
     position: relative;
     overflow: hidden;
 }

 .problem-solution-catchy::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
         radial-gradient(circle at 80% 60%, rgba(52, 211, 153, 0.1) 0%, transparent 40%);
     pointer-events: none;
 }

 .problem-solution-catchy::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background-image: linear-gradient(var(--border-gray) 1px, transparent 1px),
         linear-gradient(90deg, var(--border-gray) 1px, transparent 1px);
     background-size: 60px 60px;
     opacity: 0.05;
     pointer-events: none;
 }

 .catchy-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .catchy-header h2 {
     color: #fff;
 }

 .catchy-header p {
     color: #a5b4cb;
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto;
     margin-top: 1.3rem;
 }

 .problem-solution-catchy>.container>.catchy-wrapper {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     position: relative;
     z-index: 5;
     align-items: center;
     justify-content: center;
 }

 .catchy-wrapper>.catchy-card {
     flex: 1 1 350px;
     background: rgba(21, 27, 40, 0.6);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(45, 51, 69, 0.5);
     border-radius: 40px;
     padding: 3.5rem 3rem;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
 }

 .catchy-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
     transform: translateX(-100%);
     transition: transform 0.6s;
 }

 .catchy-card:hover::before {
     transform: translateX(100%);
 }

 .catchy-wrapper>.problem-card {
     background: linear-gradient(145deg, rgba(26, 28, 44, 0.9), rgba(18, 22, 36, 0.9));
     border-color: rgba(239, 68, 68, 0.3);
 }

 .catchy-wrapper>.solution-card {
     background: linear-gradient(145deg, rgba(22, 33, 43, 0.9), rgba(15, 26, 36, 0.9));
     border-color: rgba(16, 185, 129, 0.3);
 }

 .catchy-card:hover {
     transform: translateY(-15px) scale(1.02);
     border-color: var(--primary-main);
     box-shadow: 0 30px 50px -20px rgba(99, 102, 241, 0.5);
 }

 .catchy-card>.card-glow {
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
     opacity: 0;
     transition: opacity 0.4s;
     pointer-events: none;
 }

 .catchy-card:hover>.card-glow {
     opacity: 1;
 }

 .catchy-card>.catchy-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 2rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
     display: none;
 }

 .catchy-icon>i {
     font-size: 3.2rem;
 }

 .catchy-wrapper>.problem-card>.catchy-icon {
     background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
     border-color: rgba(239, 68, 68, 0.3);
 }

 .problem-card>.catchy-icon>i {
     color: #f87171;
     filter: drop-shadow(0 0 10px rgba(248, 113, 113, 0.5));
 }

 .catchy-wrapper>.solution-card>.catchy-icon {
     background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
     border-color: rgba(16, 185, 129, 0.3);
 }

 .solution-card>.catchy-icon>i {
     color: #4ade80;
     filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
 }

 .catchy-card>.catchy-title {
     font-size: 2.0rem;
     font-weight: 600;
     line-height: 1.2;
     margin-bottom: 2rem;
     position: relative;
 }

 .catchy-wrapper>.problem-card>.catchy-title {
     background: linear-gradient(145deg, #ffffff, #fecaca);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .catchy-wrapper>.solution-card>.catchy-title {
     background: linear-gradient(145deg, #ffffff, #a7f3d0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .catchy-card>.catchy-list {
     list-style: none;
     margin-top: 2rem;
 }

 .catchy-list>li {
     display: flex;
     align-items: center;
     margin-bottom: 1.2rem;
     font-size: 1.1rem;
     color: #d1ddeb;
     padding: 0.8rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     transition: transform 0.2s;
     gap: 5px;
 }

 .catchy-list>li:hover {
     transform: translateX(10px);
 }

 .catchy-list>li:last-child {
     border-bottom: none;
 }

 .catchy-list>li>i {
     width: 2rem;
     font-size: 1.4rem;
 }

 .catchy-wrapper>.problem-card>.catchy-list>li>i {
     color: #ef4444;
     filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
 }

 .catchy-wrapper>.solution-card>.catchy-list>li>i {
     color: #10b981;
     filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
 }

 /* VS Badge */
 .catchy-wrapper>.vs-badge-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 20;
 }

 .vs-badge-wrapper>.vs-badge {
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     font-weight: 800;
     background: linear-gradient(145deg, #2a3448, #1e2638);
     width: 80px;
     height: 80px;
     border-radius: 50%;
     border: 3px solid;
     border-color: var(--primary-main) var(--accent-emerald) var(--primary-main) var(--accent-emerald);
     color: white;
     margin: 0 auto;
     text-transform: uppercase;
     flex-shrink: 0;
     box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
     position: relative;
     animation: pulseRotate 3s infinite;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }

 .accordion-body a {
     text-decoration: none;
     color: #818cf8;
 }

 .vs-badge::before {
     content: '';
     position: absolute;
     inset: -5px;
     border-radius: 50%;
     background: linear-gradient(45deg, var(--primary-main), var(--accent-emerald));
     opacity: 0.3;
     z-index: -1;
     animation: pulseGlow 2s infinite alternate;
 }

 @keyframes pulseRotate {
     0% {
         transform: rotate(0deg) scale(1);
     }

     50% {
         transform: rotate(180deg) scale(1.1);
     }

     100% {
         transform: rotate(360deg) scale(1);
     }
 }

 @keyframes pulseGlow {
     0% {
         opacity: 0.3;
         transform: scale(1);
     }

     100% {
         opacity: 0.6;
         transform: scale(1.2);
     }
 }

 /* Desktop styles */
 @media (min-width: 901px) {
     .catchy-wrapper {
         flex-wrap: nowrap;
         align-items: stretch;
         gap: 1rem;
     }

     .catchy-wrapper>.vs-badge-wrapper {
         margin: 0 0.5rem;
         flex-shrink: 0;
     }

     .catchy-wrapper>.catchy-card {
         flex: 1;
     }
 }

 /* Mobile styles */
 @media (max-width: 900px) {
     .catchy-wrapper {
         flex-direction: column;
         gap: 1rem;
     }

     .catchy-wrapper>.vs-badge-wrapper {
         margin: 0.5rem 0;
     }

     .vs-badge-wrapper>.vs-badge {
         width: 60px;
         height: 60px;
         font-size: 1.2rem;
     }

     .catchy-wrapper>.catchy-card {
         padding: 2.5rem 2rem;
         flex: 1;
     }

     .catchy-card>.catchy-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 480px) {
     .catchy-wrapper>.vs-badge-wrapper {
         margin: 0.25rem 0;
     }

     .vs-badge-wrapper>.vs-badge {
         width: 50px;
         height: 50px;
         font-size: 1rem;
     }

     .catchy-wrapper>.catchy-card {
         padding: 2rem 1.5rem;
     }

     .catchy-card>.catchy-title {
         font-size: 1.8rem;
     }

     .catchy-list>li {
         font-size: 1rem;
     }
 }

 /* --- TECHIE BLOCK --- */
 .techie-block {
     padding: 5rem 0;
     background: linear-gradient(145deg, #0f1420, #0a0e17);
     border-top: 2px solid var(--border-gray);
     border-bottom: 2px solid var(--border-gray);
     position: relative;
     overflow: hidden;
     text-align: center;
 }

 .techie-block::before {
     content: '';
     position: absolute;
     top: -30%;
     left: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
     border-radius: 50%;
     animation: floatGlow 15s infinite alternate;
     pointer-events: none;
 }

 .techie-block::after {
     content: '';
     position: absolute;
     bottom: -30%;
     right: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     animation: floatGlow 12s infinite alternate-reverse;
     pointer-events: none;
 }

 @keyframes floatGlow {
     0% {
         transform: translate(0, 0) scale(1);
         opacity: 0.3;
     }

     100% {
         transform: translate(50px, -50px) scale(1.3);
         opacity: 0.6;
     }
 }

 .techie-block>.container>.techie-wrapper {
     max-width: 900px;
     margin: 0 auto;
     position: relative;
     z-index: 5;
 }

 .techie-wrapper>.techie-icon-wrapper {
     display: inline-block;
     margin-bottom: 2rem;
     position: relative;
 }

 .techie-icon-wrapper>.techie-icon {
     width: 120px;
     height: 120px;
     background: linear-gradient(145deg, var(--primary-dark), #4f46e5);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3.5rem;
     color: white;
     border: 3px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0 0 50px rgba(99, 102, 241, 0.6);
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .techie-icon-wrapper>.pulse-ring {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 120px;
     height: 120px;
     border-radius: 50%;
     background: transparent;
     border: 2px solid var(--primary-main);
     animation: pulseRing 2s infinite;
 }

 @keyframes pulseRing {
     0% {
         width: 120px;
         height: 120px;
         opacity: 0.8;
     }

     100% {
         width: 180px;
         height: 180px;
         opacity: 0;
     }
 }

 .techie-wrapper>.techie-title {
     margin-bottom: 1rem;
 }

 .techie-wrapper>.techie-highlight {
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--accent-emerald);
     margin-bottom: 1.5rem;
     text-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
     display: inline-block;
     padding: 0.5rem 2rem;
     background: rgba(52, 211, 153, 0.1);
     border-radius: 60px;
     border: 1px solid rgba(52, 211, 153, 0.3);
     backdrop-filter: blur(5px);
 }

 .techie-wrapper>.techie-text {
     font-size: 1.2rem;
     color: #cbd5e8;
     margin-bottom: 2.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.7;
 }

 .techie-wrapper>.techie-features {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     justify-content: center;
     margin-bottom: 3rem;
 }

 .techie-features>.techie-feature {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     background: linear-gradient(145deg, rgba(21, 27, 40, 0.8), rgba(15, 20, 30, 0.8));
     padding: 0.8rem 2rem;
     border-radius: 60px;
     border: 1px solid var(--border-gray);
     backdrop-filter: blur(5px);
     transition: all 0.3s;
 }

 .techie-feature:hover {
     transform: translateY(-5px);
     border-color: var(--primary-main);
     box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
 }

 .techie-feature>i {
     color: var(--accent-emerald);
     font-size: 1.3rem;
 }

 .techie-feature>span {
     font-weight: 500;
     font-size: 1.1rem;
     color: #e0e7ff;
 }

 .techie-wrapper>.techie-cta {
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     background: linear-gradient(145deg, var(--primary-dark), #4f46e5);
     color: white;
     padding: 1.2rem 3rem;
     border-radius: 60px;
     font-weight: 600;
     font-size: 1.2rem;
     border: 1px solid var(--primary-main);
     transition: all 0.3s;
     box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
     text-decoration: none;
 }

 .techie-cta:hover {
     background: linear-gradient(145deg, #4f46e5, #6366f1);
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 20px 40px rgba(99, 102, 241, 0.6);
 }

 .techie-cta>i {
     transition: transform 0.3s;
 }

 .techie-cta:hover>i {
     transform: translateX(8px);
 }

 @media (max-width: 768px) {
     .techie-wrapper>.techie-title {
         font-size: 2rem;
     }

     .techie-wrapper>.techie-highlight {
         font-size: 1.6rem;
     }

     .techie-wrapper>.techie-text {
         font-size: 1.1rem;
         padding: 0 1rem;
     }

     .techie-wrapper>.techie-features {
         flex-direction: column;
         align-items: center;
         gap: 1rem;
     }

     .techie-features>.techie-feature {
         width: 100%;
         justify-content: center;
     }

     .techie-icon-wrapper>.techie-icon {
         width: 100px;
         height: 100px;
         font-size: 3rem;
     }

     .techie-icon-wrapper>.pulse-ring {
         width: 100px;
         height: 100px;
     }

     @keyframes pulseRing {
         0% {
             width: 100px;
             height: 100px;
         }

         100% {
             width: 160px;
             height: 160px;
         }
     }
 }

 @media (max-width: 480px) {
     .techie-wrapper>.techie-cta {
         width: 100%;
         justify-content: center;
     }
 }

 /* --- FEATURES SECTION --- */
 .features {
     padding: 5rem 0;
     border-top: 1px solid var(--border-gray);
     border-bottom: 1px solid var(--border-gray);
     background: #0e121d;
 }

 .section-head {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-head>p {
     color: #b0bedb;
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto;
     margin-top: 1.3rem;
 }

 .features>.container>.features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1.5rem;
 }

 .features-grid>.feature-block {
     background: var(--card-bg);
     border: 1px solid var(--border-gray);
     border-radius: 16px;
     padding: 1.8rem;
     transition: border 0.15s;
     height: 100%;
 }

 .feature-block:hover {
     border-color: #7f8db0;
 }

 .feature-block>h3 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .feature-block>h3>i {
     color: var(--primary-main);
 }

 .feature-block>p {
     color: #b1c0d6;
     font-size: 0.95rem;
 }

 .feature-block>.mini-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     margin-top: 1rem;
 }

 .mini-tags>.mini-tag {
     background: #253040;
     color: #cbd5e8;
     font-size: 0.7rem;
     padding: 0.2rem 0.8rem;
     border-radius: 30px;
     border: 1px solid #43536e;
 }

 @media (max-width: 768px) {
     .section-head>p {
         font-size: 1rem;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }
 }

 /* --- PRICING SECTION --- */
 .pricing {
     padding: 5rem 0;
     background: var(--bg-deep);
 }

 .pricing>.container>.pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
     align-items: center;
 }

 .pricing-grid>.price-card {
     background: var(--card-bg);
     border: 1px solid var(--border-gray);
     border-radius: 28px;
     padding: 2.5rem;
     position: relative;
     height: 100%;
 }

 .pricing-grid>.featured {
     border: 2px solid var(--primary-main);
     background: #182237;
 }

 .price-card>.best-badge {
     position: absolute;
     top: -0.8rem;
     left: 2rem;
     background: #10b981;
     color: #ffffff;
     font-size: 0.8rem;
     font-weight: 700;
     padding: 0.25rem 1.2rem;
     border-radius: 40px;
     border: 1px solid #34d399;
     text-transform: uppercase;
 }

 .price-card>.price-num {
     font-size: 3rem;
     font-weight: 700;
     color: #ffffff;
     margin: 1rem 0 0.5rem;
 }

 .price-num>small {
     font-size: 1rem;
     color: #9fadcf;
 }

 .price-card>.feature-checklist {
     list-style: none;
     margin: 2rem 0;
 }

 .feature-checklist>li {
     display: flex;
     gap: 0.75rem;
     margin-bottom: 0.7rem;
     color: #d0dcf0;
     font-size: 0.95rem;
 }

 .feature-checklist>li>i {
     color: var(--accent-emerald);
     width: 1.2rem;
 }

 .price-card>.btn-block {
     width: 100%;
     justify-content: center;
 }

 @media (max-width: 768px) {
     .pricing-grid {
         grid-template-columns: 1fr;
         max-width: 450px;
         margin-left: auto;
         margin-right: auto;
     }

     .price-card {
         padding: 2rem;
     }

     .price-num {
         font-size: 2.5rem;
     }
 }

 /* --- DEMO SECTION --- */
 .demo-section {
     padding: 5rem 0;
     background: #0e121d;
     border-top: 1px solid var(--border-gray);
     border-bottom: 1px solid var(--border-gray);
     text-align: center;
 }

 .demo-section>.container>.section-title {
     margin-bottom: 1rem;
 }

 .demo-section>.container>.section-subtitle {
     color: #b0bedb;
     font-size: 1.2rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .demo-section>.container>.row {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
     text-align: left;
 }

 .row>[class*="col-"]>a {
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .demo-card {
     background: var(--card-bg);
     border: 1px solid var(--border-gray);
     border-radius: 24px;
     overflow: hidden;
     transition: border 0.2s, transform 0.2s;
     height: 100%;
 }

 .demo-card:hover {
     border-color: var(--primary-main);
     transform: translateY(-6px);
 }

 .demo-card>.card-img-container {
     position: relative;
     overflow: hidden;
 }

 .card-img-container>img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     border-bottom: 1px solid var(--border-gray);
 }

 .card-img-container>.card-overlay {
     position: absolute;
     inset: 0;
     background: rgba(15, 23, 42, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.2s;
 }

 .demo-card:hover .card-overlay {
     opacity: 1;
 }

 .card-overlay>.btn-main {
     background: var(--primary-dark);
     color: white;
     padding: 0.8rem 1.8rem;
     border-radius: 40px;
     font-weight: 600;
     border: 1px solid var(--primary-main);
     text-decoration: none;
 }

 .demo-card>.card-body-custom {
     padding: 1.5rem 1.5rem 0.5rem;
 }

 .card-body-custom>p {
     color: #acb8d0;
 }

 .demo-card>.card-footer-custom {
     padding: 1rem 1.5rem 1.5rem;
     color: #9aa9c4;
     font-size: 0.9rem;
     border-top: 1px dashed var(--border-gray);
     margin-top: 0.5rem;
 }

 @media (max-width: 768px) {
     .demo-section>.container>.section-title {
         font-size: 2rem;
     }

     .demo-section>.container>.section-subtitle {
         font-size: 1rem;
     }
 }

 /* --- FAQ SECTION --- */
 .section-faq {
     padding: 5rem 0;
     background: #0e121d;
     border-top: 1px solid var(--border-gray);
     border-bottom: 1px solid var(--border-gray);
 }

 .section-faq>.container-default {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .container-default>.faq-title {
     font-family: 'General Sans', 'Inter', sans-serif;
     font-size: 2.5rem;
     font-weight: 600;
     text-align: center;
     margin-bottom: 1.5rem;
     color: #ffffff;
 }

 .container-default>.faq-sub {
     text-align: center;
     color: #b0bedb;
     font-size: 1.2rem;
 }

 .container-default>.faq-list {
     list-style: none;
     overflow: hidden;
     max-width: 900px;
     margin: 0 auto;
     margin-top: 3rem;
 }

 .faq-list>.accordion-item {
     background: #151b28;
     border: 1px solid #262e40;
     padding: 1.8rem 2rem;
     margin-bottom: 15px;
     border-radius: 10px;
 }

 .accordion-item:last-child {
     border-bottom: none;
 }

 .accordion-item>.accordion-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1.5rem;
     font-size: 1.2rem;
     font-weight: 600;
     color: #ffffff;
     cursor: pointer;
 }

 .accordion-header>button {
     background: none;
     border: none;
     color: #ffffff;
     font-size: 1.2rem;
     font-weight: 600;
     text-align: left;
     flex: 1;
     cursor: pointer;
     padding: 0;
 }

 .accordion-header>.accordion-icon-1 {
     position: relative;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     background: var(--primary-main);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .accordion-icon-1>span {
     display: inline-block;
     background: white;
     border-radius: 2px;
     position: absolute;
     transition: transform 0.2s;
 }

 .accordion-icon-1>span:first-child {
     width: 12px;
     height: 2px;
 }

 .accordion-icon-1>span:last-child {
     width: 2px;
     height: 12px;
 }

 .accordion-item.active .accordion-icon-1>span:last-child {
     transform: rotate(90deg);
     opacity: 0;
 }

 .accordion-item>.accordion-body {
     color: #b0bedb;
     margin-top: 1rem;
     display: none;
 }

 .accordion-item.active>.accordion-body {
     display: block;
 }

 .accordion-body>.pt-5 {
     padding-top: 1.25rem;
 }

 @media (max-width: 768px) {
     .container-default>.faq-title {
         font-size: 2rem;
     }

     .container-default>.faq-sub {
         font-size: 1rem;
     }

     .faq-list>.accordion-item {
         padding: 1.5rem 1rem;
     }

     .accordion-header>button {
         font-size: 1rem;
     }
 }

 /* --- CONTACT SECTION --- */
 .contact-section {
     padding: 5rem 0;
     background: linear-gradient(145deg, #0d101b 0%, #0a0d15 100%);
     border-top: 2px solid var(--border-gray);
     border-bottom: 2px solid var(--border-gray);
     position: relative;
     overflow: hidden;
 }

 .contact-section::before {
     content: '';
     position: absolute;
     top: -30%;
     left: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     animation: softPulse 12s infinite alternate;
     pointer-events: none;
 }

 .contact-section::after {
     content: '';
     position: absolute;
     bottom: -20%;
     right: -5%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     animation: softPulse 14s infinite alternate-reverse;
     pointer-events: none;
 }

 @keyframes softPulse {
     0% {
         opacity: 0.3;
         transform: scale(1);
     }

     100% {
         opacity: 0.8;
         transform: scale(1.2);
     }
 }

 .contact-section>.container>.contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     margin-top: 3rem;
     position: relative;
     z-index: 5;
 }


 .email-hero-card {
     position: relative;
     overflow: hidden;
 }

 .email-glow {
     position: absolute;
     top: -50%;
     right: -20%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
     border-radius: 50%;
     pointer-events: none;
 }

 .email-icon-ring {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #6366f1, #8b5cf6);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.8rem;
     box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
 }

 .email-icon-ring i {
     font-size: 2rem;
     color: white;
 }

 .email-hero-card h3 {
     font-size: 1.6rem;
     margin-bottom: 0.5rem;
 }

 .single-email {
     margin: 1.5rem 0;
 }

 .email-display {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: rgba(99, 102, 241, 0.15);
     padding: 0.8rem 1.8rem;
     border-radius: 60px;
     border: 1px solid rgba(99, 102, 241, 0.3);
     transition: all 0.2s;
     text-decoration: none;
 }

 .email-display:hover {
     background: rgba(99, 102, 241, 0.25);
     border-color: #6366f1;
 }

 .email-display i {
     font-size: 1.3rem;
     color: #6366f1;
 }

 .email-display a {
     font-size: 1.2rem;
     font-weight: 600;
     color: white;
     text-decoration: none;
     letter-spacing: -0.2px;
 }

 .response-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(16, 185, 129, 0.15);
     padding: 0.4rem 1rem;
     border-radius: 40px;
     font-size: 0.8rem;
     color: #10b981;
     margin-top: 1rem;
 }

 /* Resources Grid */
 .resources-grid {
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid #2d3748;
 }

 .resources-grid h4 {
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #9ca3af;
     margin-bottom: 1.2rem;
     display: flex;
     align-items: center;
     gap: 0.6rem;
 }

 .resource-links {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
 }

 .resource-link {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     background: rgba(255, 255, 255, 0.03);
     padding: 0.6rem 1.2rem;
     border-radius: 40px;
     text-decoration: none;
     color: #cbd5e1;
     font-size: 0.9rem;
     font-weight: 500;
     border: 1px solid #2d3748;
     transition: all 0.2s;
 }

 .resource-link:hover {
     background: rgba(99, 102, 241, 0.15);
     border-color: #6366f1;
     color: white;
     transform: translateX(4px);
 }

 .resource-link i {
     color: #6366f1;
     font-size: 0.9rem;
 }



 .contact-grid>.contact-info,
 .contact-grid>.contact-form {
     background: linear-gradient(145deg, #111827, #0f172a);
     backdrop-filter: blur(10px);
     border: 1px solid var(--border-gray);
     border-radius: 32px;
     padding: 2.8rem;
     transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.3s;
     box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.5);
 }

 .contact-info:hover,
 .contact-form:hover {
     border-color: var(--primary-main);
     transform: translateY(-8px);
     box-shadow: 0 25px 40px -15px rgba(99, 102, 241, 0.2);
 }

 .contact-info>h3,
 .contact-form>h3 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     background: linear-gradient(145deg, #ffffff, #cbd5e1);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .contact-info>p {
     color: #b1c0d6;
     margin-bottom: 2rem;
     font-size: 1.1rem;
 }

 .contact-info>.contact-email {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
     padding: 1rem 1.8rem;
     background: #1c2335;
     border: 1px solid var(--border-gray);
     border-radius: 60px;
     width: fit-content;
     transition: all 0.2s;
 }

 .contact-email:hover {
     border-color: var(--primary-main);
     background: #232b41;
     transform: scale(1.02);
 }

 .contact-email>i {
     font-size: 1.5rem;
     color: var(--primary-main);
 }

 .contact-email>a {
     color: #e0e7ff;
     font-size: 1.2rem;
     text-decoration: none;
     border-bottom: 1px dashed transparent;
     transition: border 0.15s;
 }

 .contact-email:hover>a {
     border-bottom-color: var(--primary-main);
 }

 .contact-info>.nice-words {
     font-style: italic;
     border-left: 3px solid var(--primary-main);
     margin-top: 2.5rem;
     color: #cbd5e8;
     background: rgba(0, 0, 0, 0.1);
     padding: 1.2rem 1.8rem;
     border-radius: 20px;
     backdrop-filter: blur(4px);
 }

 .contact-info .nice-words i.fa-quote-left {
     margin-right: 0.5rem;
     color: var(--accent-cyan);
 }

 .contact-info .whatsapp-link {
     margin-top: 2rem;
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .whatsapp-link>a {
     text-decoration: none;
     background: #1e273a;
     color: #fff;
     padding: 0.6rem 1.2rem;
     border-radius: 40px;
     border: 1px solid rgba(37, 211, 102, 0.2);
     transition: all 0.3s;
 }

 .whatsapp-link>a:hover {
     border-color: var(--whatsapp-green);
     background: #2a3448;
     transform: translateY(-2px);
 }

 .whatsapp-link>a i.fa-whatsapp {
     color: var(--whatsapp-green);
     margin-right: 0.5rem;
 }

 /* Contact Form */
 .contact-form>form>.form-group {
     margin-bottom: 1.8rem;
 }

 .form-group>label {
     display: block;
     margin-bottom: 0.5rem;
     color: #cbd5e1;
     font-weight: 500;
     letter-spacing: 0.3px;
 }

 .form-group>.form-control,
 .form-group>.form-select {
     width: 100%;
     padding: 1rem 1.4rem;
     background: #1c2335;
     border: 1px solid var(--border-gray);
     border-radius: 18px;
     color: white;
     font-family: 'Inter', sans-serif;
     font-size: 1rem;
     transition: all 0.2s;
 }

 .form-group>.form-select {
     appearance: none;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     background-size: 1.2rem;
     cursor: pointer;
 }

 .form-control:focus,
 .form-select:focus {
     outline: none;
     border-color: var(--primary-main);
     background: #232b41;
     box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
 }

 .form-control::placeholder {
     color: #a0abcc;
     opacity: 1;
     font-weight: 400;
 }

 .form-control:-ms-input-placeholder {
     color: #a0abcc;
 }

 .form-control::-ms-input-placeholder {
     color: #a0abcc;
 }

 .form-select>option {
     background: #1c2335;
     color: white;
     padding: 1rem;
 }

 .form-group>textarea.form-control {
     min-height: 130px;
     resize: vertical;
 }

 .btn-submit {
     background: linear-gradient(145deg, var(--primary-dark), #4f46e5);
     color: white;
     border: none;
     padding: 1.2rem 2rem;
     font-weight: 700;
     border-radius: 40px;
     cursor: pointer;
     width: 100%;
     font-size: 1.1rem;
     transition: all 0.2s;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     border: 1px solid var(--primary-main);
     letter-spacing: 0.3px;
 }

 .btn-submit:hover {
     background: linear-gradient(145deg, #4f46e5, #6366f1);
     transform: scale(1.02);
     box-shadow: 0 8px 18px rgba(99, 102, 241, 0.3);
 }

 .btn-submit>i {
     transition: transform 0.2s;
 }

 .btn-submit:hover>i {
     transform: translateX(4px);
 }

 .contact-form>form>.form-note {
     margin-top: 1.2rem;
     color: #9aa9c4;
     font-size: 0.9rem;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .form-note>i {
     color: var(--primary-main);
 }

 @media (max-width: 768px) {
     .contact-section>.container>.contact-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .contact-grid>.contact-info,
     .contact-grid>.contact-form {
         padding: 2rem;
     }

     .contact-info>h3,
     .contact-form>h3 {
         font-size: 1.8rem;
     }

     .contact-info>.contact-email {
         width: 100%;
         justify-content: center;
     }

     .contact-email>a {
         font-size: 1rem;
     }
 }

 /* --- TESTIMONIALS SECTION --- */
 .testimonials {
     padding: 5rem 0;
     background: #0e121d;
     border-top: 1px solid var(--border-gray);
     border-bottom: 1px solid var(--border-gray);
 }

 .testimonials>.container>.testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }

 .testimonials-grid>.testimonial-card {
     background: var(--card-bg);
     border: 1px solid var(--border-gray);
     border-radius: 24px;
     padding: 2rem;
     transition: border 0.2s;
     height: 100%;
 }

 .testimonial-card:hover {
     border-color: var(--primary-main);
 }

 .testimonial-card>.testimonial-rating {
     color: #fbbf24;
     margin-bottom: 1rem;
 }

 .testimonial-card>.testimonial-text {
     color: #d1ddeb;
     margin-bottom: 1.5rem;
 }

 .testimonial-card>.testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .testimonial-author>.author-avatar {
     width: 48px;
     height: 48px;
     background: var(--primary-main);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     color: white;
 }

 .testimonial-author>.author-info>h4 {
     font-size: 1.1rem;
 }

 .author-info>p {
     color: #9aa9c4;
     font-size: 0.85rem;
 }

 /* --- CTA SECTION --- */
 .cta-section {
     padding: 6rem 0;
     background: linear-gradient(145deg, #0f172a 0%, #020617 100%);
     border-top: 1px solid var(--border-gray);
     text-align: center;
 }

 .cta-section>.container>.cta-content>h2 {
     font-size: 2.8rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     background: linear-gradient(145deg, #ffffff, #cbd5e1);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .cta-content h2 span {
     color: var(--primary-main);
 }

 .cta-content>p {
     font-size: 1.2rem;
     color: #a5b4cb;
     max-width: 700px;
     margin: 0 auto 2.5rem;
 }

 .cta-content>.cta-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .cta-content>.trust-footer {
     margin-top: 3rem;
     display: flex;
     flex-direction: column;
     gap: 1rem;
     align-items: center;
 }

 .trust-footer>.guarantee {
     color: #64748b;
     font-size: 0.95rem;
 }

 .guarantee i.fa-shield-halved {
     color: var(--primary-main);
     margin-right: 0.3rem;
 }

 .guarantee i.fa-wordpress {
     color: #21759b;
     margin-right: 0.3rem;
 }

 .guarantee span {
     margin: 0 1rem;
     opacity: 0.3;
 }

 .trust-footer>.bonus-badge {
     background: rgba(129, 140, 248, 0.1);
     color: #818cf8;
     padding: 0.4rem 1.2rem;
     border-radius: 20px;
     font-size: 0.85rem;
     border: 1px solid rgba(129, 140, 248, 0.2);
 }

 .bonus-badge i.fa-tools {
     margin-right: 0.3rem;
 }

 @media (max-width: 768px) {
     .cta-section>.container>.cta-content>h2 {
         font-size: 2rem;
     }

     .cta-content>p {
         font-size: 1.1rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: stretch;
         gap: 1rem;
         padding: 0 2rem;
     }
 }

 /* --- FOOTER --- */
 footer {
     background: #050a14;
     padding: 3rem 0;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     color: #a5b4cb;
     font-family: 'Inter', sans-serif;
 }

 footer>.container {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .footer-brand {
     margin-bottom: 1.5rem;
 }

 .footer-brand h3 {
     color: #fff;
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .footer-brand h3 span {
     color: var(--primary-main);
 }

 .footer-brand p {
     font-size: 0.9rem;
     max-width: 450px;
     line-height: 1.5;
 }

 .footer-links {
     display: flex;
     gap: 2rem;
     margin-bottom: 2rem;
     flex-wrap: wrap;
     justify-content: center;
     font-size: 0.85rem;
 }

 .footer-links a {
     color: #a5b4cb;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-links a:hover {
     color: var(--primary-main);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 1.5rem;
     width: 100%;
     font-size: 0.8rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .footer-bottom .designer {
     color: var(--primary-main);
     font-weight: 600;
 }

 .footer-bottom .legal-links {
     display: flex;
     gap: 1rem;
 }

 .footer-bottom .legal-links a {
     color: #a5b4cb;
     text-decoration: none;
 }

 .footer-bottom .legal-links a:hover {
     color: var(--primary-main);
 }

 @media (max-width: 480px) {
     footer p {
         font-size: 0.9rem;
         padding: 0 1rem;
     }
 }

 /* --- UTILITY CLASSES --- */
 .text-cyan {
     color: var(--accent-cyan);
 }

 .text-emerald {
     color: var(--accent-emerald);
 }

 .text-primary {
     color: var(--primary-main);
 }

 .bg-deep {
     background: var(--bg-deep);
 }