 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --primary: hsl(210, 65%, 28%);
      --primary-dark: hsl(210, 70%, 20%);
      --primary-foreground: hsl(0, 0%, 100%);
      --accent: hsl(355, 65%, 48%);
      --accent-light: hsl(355, 60%, 58%);
      --background: hsl(220, 15%, 95%);
      --background-alt: hsl(220, 12%, 92%);
      --foreground: hsl(220, 30%, 15%);
      --muted: hsl(220, 15%, 88%);
      --muted-foreground: hsl(220, 15%, 45%);
      --card: hsl(0, 0%, 100%);
      --border: hsl(220, 15%, 85%);
      --gradient-hero: linear-gradient(135deg, hsl(210, 65%, 25%) 0%, hsl(210, 55%, 35%) 50%, hsl(220, 45%, 30%) 100%);
      --gradient-accent: linear-gradient(135deg, hsl(355, 65%, 48%) 0%, hsl(355, 70%, 55%) 100%);
      --shadow-soft: 0 4px 20px -4px rgba(0, 40, 80, 0.1);
      --shadow-medium: 0 8px 30px -8px rgba(0, 40, 80, 0.15);
      --shadow-strong: 0 20px 50px -15px rgba(0, 40, 80, 0.2);
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .section-padding {
      padding: 5rem 0;
    }
    
    .text-accent {
      color: var(--accent);
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      border: none;
    }
    
    .btn-hero {
      background: var(--primary-foreground);
      color: var(--primary);
      box-shadow: var(--shadow-medium);
    }
    
    .btn-hero:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-strong);
    }
    
    .btn-accent {
      background: var(--gradient-accent);
      color: var(--primary-foreground);
      box-shadow: 0 8px 30px -8px hsla(355, 65%, 48%, 0.3);
    }
    
    .btn-accent:hover {
      transform: scale(1.02);
    }
    
    .btn-default {
      background: var(--primary);
      color: var(--primary-foreground);
    }
    
    .btn-default:hover {
      background: var(--primary-dark);
    }

    /* Hero Slider */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
    }
    
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }
    
    .hero-slide.active {
      opacity: 1;
    }
    
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(20, 50, 80, 0.95), rgba(20, 50, 80, 0.8), transparent);
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    .hero-text {
      max-width: 48rem;
    }
    
    .hero-badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: var(--gradient-accent);
      color: var(--primary-foreground);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--primary-foreground);
      margin-bottom: 1.5rem;
    }
    
    .hero h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--primary-foreground);
      margin-bottom: 1.5rem;
    }
    
    .hero p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }
    
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .hero-nav {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .hero-nav button {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    
    .hero-nav button:hover {
      background: rgba(255,255,255,0.1);
    }
    
    .hero-dots {
      display: flex;
      gap: 0.5rem;
    }
    
    .hero-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .hero-dot.active {
      width: 2rem;
      background: var(--gradient-accent);
    }
    
    /* Section Header */
    .section-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 4rem;
    }
    
    .section-label {
      display: inline-block;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    
    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }
    
    .section-header p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    /* Intro Section */
    .intro-section {
      background: var(--background-alt);
    }
    
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    @media (max-width: 1024px) {
      .intro-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .intro-content .section-label {
      text-align: left;
    }
    
    .intro-content h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    
    .intro-content p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .intro-image {
      position: relative;
    }
    
    .intro-image img {
      width: 100%;
      border-radius: 1rem;
      box-shadow: var(--shadow-strong);
    }
    
    .intro-image::before {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 18rem;
      height: 18rem;
      background: var(--gradient-accent);
      border-radius: 1rem;
      z-index: -1;
      opacity: 0.15;
    }
    
    /* Problem Solution */
    .solutions-section {
      background: var(--background);
    }
    
    .solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

    
    .solution-card {
      position: relative;
      border-radius: 1rem;
      padding: 2rem;
      border: 2px solid var(--primary);
      background: var(--card);
      overflow: hidden;
      transition: all 0.5s ease;
    }
    
    .solution-card:nth-child(even) {
      border-color: var(--accent);
    }
    
    .solution-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .solution-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 8rem;
      height: 8rem;
      background: linear-gradient(to bottom left, hsla(355, 65%, 48%, 0.1), transparent);
      border-bottom-left-radius: 100%;
    }
    
    .solution-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.75rem;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s;
    }
    
    .solution-card:hover .solution-icon {
      transform: scale(1.1);
    }
    
    .solution-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--primary-foreground);
    }
    
    .solution-problem {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }
    
    .solution-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .solution-card > p {
      color: var(--muted-foreground);
    }
    
    /* About Section */
    .about-section {
      background: var(--background-alt);
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    @media (max-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .about-image {
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 1rem;
      box-shadow: var(--shadow-strong);
    }
    
    .about-image::after {
      content: '';
      position: absolute;
      top: -1.5rem;
      left: -1.5rem;
      width: 12rem;
      height: 12rem;
      border: 4px solid var(--accent);
      border-radius: 1rem;
    }
    
    .about-stats {
      position: absolute;
      bottom: 2rem;
      right: -2rem;
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-medium);
    }
    
    .about-stats-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .about-stats-label {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }
    
    .about-content .section-label {
      text-align: left;
    }
    
    .about-content h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    
    .about-content p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .value-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .value-item svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--accent);
      flex-shrink: 0;
    }
    
    .value-item span {
      font-weight: 500;
    }

    /* Products & Services Cards */
    .ps-section {
      background: var(--background);
    }
    
    .ps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

    
    @media (max-width: 768px) {
      .ps-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .ps-card {
      background: var(--card);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s ease;
    }
    
    .ps-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .ps-image {
      height: 16rem;
      position: relative;
      overflow: hidden;
    }
    
    .ps-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .ps-card:hover .ps-image img {
      transform: scale(1.1);
    }
    
    .ps-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 50, 80, 0.7), transparent);
    }
    
    .ps-category {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      z-index: 1;
      padding: 0.25rem 0.75rem;
      background: var(--gradient-accent);
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary-foreground);
    }
    
    .ps-content {
      padding: 2rem;
    }
    
    .ps-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .ps-content > p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    /* Partners */
    .partners-section {
      background: var(--background-alt);
    }
    
    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3rem;
      align-items: center;
    }
    
    .partner-item {
      background: var(--card);
      padding: 1.5rem 2rem;
      border-radius: 0.75rem;
      box-shadow: var(--shadow-soft);
      font-weight: 600;
      color: var(--primary);
      transition: all 0.3s;
    }
    
    .partner-item:hover {
      transform: translateY(-0.25rem);
      box-shadow: var(--shadow-medium);
    }

    /* Reviews */
    .reviews-section {
      background: var(--gradient-hero);
    }
    
    .reviews-section .section-label {
      color: var(--accent-light);
    }
    
    .reviews-section .section-header h2 {
      color: var(--primary-foreground);
    }
    
    .reviews-section .section-header p {
      color: rgba(255,255,255,0.8);
    }
    
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }
    
    .review-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 1rem;
      padding: 2rem;
      position: relative;
    }
    
    .review-quote {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 3rem;
      height: 3rem;
      color: hsla(355, 65%, 48%, 0.3);
    }
    
    .review-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }
    
    .review-stars svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: var(--accent);
      color: var(--accent);
    }
    
    .review-text {
      font-size: 1.125rem;
      color: var(--foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .review-avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: var(--gradient-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--primary-foreground);
    }
    
    .review-name {
      font-weight: 600;
    }
    
    .review-role {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Footer */
    footer {
      background: var(--primary-dark);
      color: var(--primary-foreground);
      padding: 4rem 0 2rem;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .footer-brand h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .footer-brand p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .footer-tagline {
      color: var(--accent-light);
      font-weight: 600;
    }
    
    .footer-column h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column li {
      margin-bottom: 0.75rem;
    }
    
    .footer-column a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-column a:hover {
      color: var(--primary-foreground);
    }
    
    .footer-contact p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      text-align: center;
      color: rgba(255,255,255,0.5);
    }
    
    @media (max-width: 768px) {
      .hero h1, .hero h2 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .section-padding {
        padding: 3rem 0;
      }
    }