
    :root {
       --primary: #FB66C4;
      /*--primary-dark: #3BAEC5;*/
	  --primary-dark: #F766C6;
      --secondary: #656EF8;
      --accent: #F4A261;
      --accent-light: #E9C46A;
      --success: #FB66C4;
      --warning: #E9C46A;
      --light: #F8F9FA;
      /*--dark: #264653;*/
	   --dark: #020854;
      --gray: #6c757d;
      --gray-light: #e9ecef;
      --maxw: 1200px;
      --radius: 16px;
      --radius-sm: 8px;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      color: var(--dark);
      background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Full-width header wrapper */
    .header-wrapper {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }

    .header-scrolled {
      padding: 0;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      max-width: var(--maxw);
      margin: 0 auto;
      transition: var(--transition);
    }

    .header-scrolled header {
      padding: 16px 24px;
    }

    .brand {
      font-weight: 800;
      font-size: 28px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    nav {
      display: flex;
      gap: 28px;
    }

    nav a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: var(--transition);
      position: relative;
    }

    nav a:hover {
      color: var(--primary);
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transition: var(--transition);
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Mobile menu button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 0;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
      z-index: -1;
	  
    }

    .hero-content h1 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      background: linear-gradient(90deg, var(--dark), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-content p.lead {
      font-size: 1.2rem;
      color: var(--gray);
      margin-bottom: 32px;
    }

    .cta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .btn {
      padding: 16px 32px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-size: 16px;
      cursor: pointer;
      border: none;
      gap: 8px;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .btn-ghost {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--gray-light);
    }

    .btn-ghost:hover {
      border-color: var(--primary);
      background: rgba(42, 157, 143, 0.05);
    }

    .price-card {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      border-top: 4px solid var(--primary);
    }

    .price-card-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .price-tag {
      text-align: right;
    }

    .price-tag .starting {
      font-size: 14px;
      color: var(--gray);
    }

    .price-tag .amount {
      font-weight: 800;
      font-size: 28px;
      color: var(--primary);
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
    }

    .floating-card {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
      z-index: 2;
    }

    .dashboard-img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-sm);
      display: block;
    }

    .floating-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
      z-index: -1;
    }

    .floating-card .card-content {
      text-align: center;
      margin-top: 16px;
    }

    .floating-card .card-content h3 {
      font-weight: 700;
      margin-bottom: 8px;
    }

    .floating-card .card-content p {
      color: var(--gray);
      font-size: 14px;
    }

    .floating-element {
      position: absolute;
      z-index: 1;
    }

    .element-1 {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      top: -20px;
      right: -20px;
      opacity: 0.8;
      filter: blur(20px);
    }

    .element-2 {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--accent), var(--secondary));
      border-radius: var(--radius);
      bottom: -30px;
      left: -30px;
      opacity: 0.6;
      filter: blur(15px);
    }

    /* Sections */
    section {
      padding: 40px 0;
    }

    section:nth-child(even) {
      /*background: white;*/
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .section-header h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--dark);
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
    }

    .section-header p.lead {
      font-size: 1.1rem;
      color: var(--gray);
      margin-top: 24px;
    }

    /* Services */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service {
      background: white;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-bottom: 4px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .service:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: var(--dark);
    }

    .service p.lead {
      color: var(--gray);
      margin-bottom: 20px;
    }

    .service ul {
      color: var(--gray);
      line-height: 1.8;
      padding-left: 20px;
	  list-style:none;
    }

    .service ul li {
      margin-bottom: 8px;
      position: relative;
    }

    .service ul li::before {
      content: '✓';
      color: var(--primary);
      font-weight: bold;
      position: absolute;
      left: -20px;
    }

    /* Samples */
    .samples {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .sample {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
    }

    .sample:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .sample-img {
      height: 200px;
      background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .sample-img::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
    }

    .sample-content {
      padding: 24px;
    }

    .sample-content strong {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .sample-content div {
      color: var(--gray);
      font-size: 14px;
      line-height: 1.6;
    }

    /* Why List */
    .why-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .why-item {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .why-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .why-icon {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .why-text strong {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .why-text span {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.6;
    }

    /* Testimonials */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .testimonial {
      background: white;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      position: relative;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 80px;
      color: var(--gray-light);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .testimonial strong {
      display: block;
      margin-bottom: 12px;
      font-size: 18px;
      line-height: 1.5;
    }

    .testimonial div {
      color: var(--gray);
      font-style: italic;
    }

    .client-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gray-light);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
    }

    /* FAQ */
    .faq-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--gray-light);
    }

    .faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .faq-item strong {
      display: block;
      margin-bottom: 12px;
      font-size: 18px;
      color: var(--dark);
    }

    .faq-item p {
      color: var(--gray);
      line-height: 1.7;
    }

    /* Final CTA */
    .final-cta {
      text-align: center;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      border-radius: var(--radius);
      padding: 80px 40px;
      margin: 40px 0;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.5;
    }

    .final-cta h2 {
      color: white;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .final-cta p.lead {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }

    .final-cta .btn {
      background: white;
      color: var(--primary);
      font-weight: 700;
      position: relative;
      z-index: 2;
    }

    .final-cta .btn:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Footer */
    footer {
      padding: 60px 0 40px;
      color: var(--gray);
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
	.footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: var(--transition);
      
    }

    .footer-links a:hover {
      color: var(--primary);
      transform: translateY(-3px);
    }
    .social-links {
      display: flex;
      gap: 20px;
    }

    .social-links a {
      color: var(--gray);
      text-decoration: none;
      transition: var(--transition);
      font-size: 18px;
    }

    .social-links a:hover {
      color: var(--primary);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .grid-3, .samples, .test-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .why-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .grid-3, .samples, .test-grid {
        grid-template-columns: 1fr;
      }
      
      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }
      
      nav.active {
        display: flex;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .section-header h2 {
        font-size: 1.5rem;
      }
      
      .cta-row {
        flex-direction: column;
      }
      
      .btn {
        width: 100%;
        justify-content: center;
      }
      
      footer {
        flex-direction: column;
        text-align: center;
      }

      .header-wrapper, .header-scrolled {
        padding: 0 16px;
      }
    }

    /* Animations */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    .floating {
      animation: float 5s ease-in-out infinite;
    }

    /* Utility Classes */
    .text-center {
      text-align: center;
    }

    .mt-20 {
      margin-top: 20px;
    }

    .mb-20 {
      margin-bottom: 20px;
    }
	
	a.innerlink{color: #F866C5;text-decoration:underline;}
	a.innerlink:hover{color: #766DF2;text-decoration:none;}
