:root {
    --primary-color: #FF007F;
    --primary-dark: #CC0066;
    --primary-light: #FF66B2;
    --text-color: #000000;
    --text-light: #333333;
    --background-light: #FFFFFF;
    --background-dark: #F0F0F0;
    --accent-color: #9900CC;
    --success-color: #00CC99;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-right: 15px;
  }
  
  header h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
  }
  
  nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: var(--primary-color);
  }
  
  .cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, #fff 0%, #fff 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  
  .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
    background-color: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    position: relative;
  }
  
  .phone-screen {
    width: 100%;
    height: 100%;
    background-color: #111;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }
  
  .tiktok-video {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
  }
  
  .tiktok-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="50" y="50" font-size="20" text-anchor="middle" alignment-baseline="middle" font-family="Arial" fill="rgba(255,255,255,0.1)">ZESHI</text></svg>');
    background-size: 100px 100px;
    opacity: 0.2;
  }
  
  .tiktok-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .tiktok-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .tiktok-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  
  .tiktok-icons i {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .tiktok-icons span {
    font-size: 0.8rem;
  }
  
  /* Services Section */
  .services {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--background-light);
  }
  
  .services h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 5px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-card {
    background-color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 127, 0.15);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .service-card p {
    color: var(--text-light);
  }
  
  /* Stats Section */
  .stats {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: white;
  }
  
  .stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }
  
  .stat p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  /* Portfolio Section */
  .portfolio {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--background-light);
  }
  
  .portfolio h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .portfolio h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 5px;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .portfolio-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-item:nth-child(2n) {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  }
  
  .portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: left;
  }
  
  .portfolio-item:hover .portfolio-content {
    transform: translateY(0);
  }
  
  .portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .portfolio-content p {
    color: var(--text-light);
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 6rem 5%;
    text-align: center;
    background-color: white;
  }
  
  .how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 5px;
  }
  
  .steps {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
  }
  
  .step:last-child {
    margin-bottom: 0;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
  }
  
  .step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .step-content p {
    color: var(--text-light);
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--background-dark);
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 5px;
  }
  
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
  }
  
  .client {
    display: flex;
    align-items: center;
  }
  
  .client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 5%;
    background-color: white;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
  }
  
  .contact-method a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
  }
  
  .contact-method a:hover {
    color: var(--primary-color);
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--background-dark);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
  }
  
  .contact-form {
    background-color: var(--background-dark);
    padding: 3rem;
    border-radius: 15px;
  }
  
  .contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group textarea {
    height: 150px;
    resize: none;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  .submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
  }
  
  /* Footer */
  footer {
    background-color: #111;
    color: white;
    padding: 4rem 5% 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo .logo {
    margin-right: 1rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
  }
  
  .footer-column ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 2.8rem;
    }
    
    .hero {
      flex-direction: column;
      text-align: center;
      padding-top: 6rem;
    }
    
    .hero-content {
      margin-bottom: 3rem;
    }
    
    .step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .step-number {
      margin-right: 0;
      margin-bottom: 1rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    header {
      padding: 1rem 5%;
    }
    
    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: white;
      padding: 6rem 2rem 2rem;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
      right: 0;
    }
    
    nav ul {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .menu-toggle {
      display: block;
      z-index: 1001;
    }
    
    .hero-content h1 {
      font-size: 2.2rem;
    }
    
    .services h2,
    .portfolio h2,
    .how-it-works h2,
    .testimonials h2,
    .contact-info h2 {
      font-size: 2rem;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
    
    header h1 {
      font-size: 1.5rem;
    }
    
    .hero-content h1 {
      font-size: 1.8rem;
    }
    
    .contact-form {
      padding: 2rem 1.5rem;
    }
  }
  
  /* Animations */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .phone-mockup {
    animation: float 6s ease-in-out infinite;
  }
  
  /* Video Placeholder Grid Styles */
  .video-placeholder-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .video-placeholder {
    background: none;
    box-shadow: none;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    transition: none;
  }
  
  .video-thumb {
    width: 220px;
    height: 390px;
    background: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
  }
  
  .portfolio-video {
    width: 220px !important;
    height: 390px !important;
    border-radius: 18px;
    object-fit: cover;
    background: #000;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  }
  
  @media (max-width: 900px) {
    .video-thumb, .portfolio-video {
      width: 140px !important;
      height: 250px !important;
    }
    .video-placeholder-grid {
      gap: 1.2rem;
    }
  }
  
  /* Landscape phone mockup for hero section */
  .phone-mockup.landscape {
    width: 500px;
    height: 260px;
    border-radius: 40px;
    transform: rotate(-8deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .phone-mockup.landscape .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
  }
  
  @media (max-width: 900px) {
    .phone-mockup.landscape {
      width: 320px;
      height: 170px;
    }
  }
  
  .new-client-banner {
    width: 100%;
    background: linear-gradient(90deg, #ff1493 0%, #ff66b2 100%);
    color: #fff;
    padding: 2rem 0;
    margin: 2.5rem 0 2rem 0;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255, 20, 147, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .banner-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .banner-emoji {
    font-size: 2.2rem;
    margin-right: 0.5rem;
  }
  
  .banner-text strong {
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    .new-client-banner {
      padding: 1.2rem 0.5rem;
      border-radius: 14px;
    }
    .banner-content {
      font-size: 1.1rem;
      gap: 0.7rem;
    }
    .banner-emoji {
      font-size: 1.5rem;
    }
  }
  
  /* Video Modal Styles */
  .video-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  .video-modal video {
    max-width: 90vw;
    max-height: 80vh;
    background: #000;
    border-radius: 12px;
  }
  
  #close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
  }
  