
    :root {
      --background: #f8fafc;
      --foreground: #0f172a;
      --card: #ffffff;
      --card-foreground: #0f172a;
      --primary: #3b82f6;
      --primary-foreground: #ffffff;
      --secondary: #f1f5f9;
      --secondary-foreground: #334155;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --accent: #10b981;
      --accent-foreground: #ffffff;
      --border: #e2e8f0;
      --destructive: #ef4444;
      --chart-4: #f59e0b;
      --radius: 0.75rem;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }

    /* Smooth scroll offset for fixed header */
    section[id] {
      scroll-margin-top: 80px;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(248, 250, 252, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    /* Logo görseli */
    .logo img {
      width: 40px;
      height: 40px;
      max-width: 40px;
      object-fit: cover;
      border-radius: 12px;
      flex-shrink: 0;
    }

    /* Yazı alanı */
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    /* Başlık */
    .logo-text h1 {
      font-size: 18px;
      margin: 0;
      color: #000;
    }

    /* Açıklama */
    .logo-text p {
      margin: 0;
      font-size: 13px;
      color: #666;
    }

    .nav-links {
      display: none;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--foreground);
    }

    .nav-buttons {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      border: none;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-foreground);
    }

    .btn-primary:hover {
      background: #2563eb;
    }

    .btn-ghost {
      background: transparent;
      color: var(--foreground);
    }

    .btn-ghost:hover {
      background: var(--muted);
    }

    .btn-outline {
      background: transparent;
      color: var(--foreground);
      border: 1px solid var(--border);
    }

    .btn-outline:hover {
      background: var(--muted);
    }

    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.625rem;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    .mobile-menu {
      display: none;
      padding: 0.5rem 1.5rem 1.5rem;
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      font-weight: 500;
      color: var(--muted-foreground);
      text-decoration: none;
      border-radius: 0.5rem;
    }

    .mobile-menu a:hover {
      background: var(--muted);
      color: var(--foreground);
    }

    .mobile-menu .btn {
      width: 100%;
      margin-top: 1rem;
    }

    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 8rem 1.5rem 5rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      filter: blur(64px);
    }

    .hero-bg-circle-1 {
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: rgba(59, 130, 246, 0.05);
    }

    .hero-bg-circle-2 {
      bottom: 0;
      left: 0;
      width: 400px;
      height: 400px;
      background: rgba(16, 185, 129, 0.05);
    }

    .hero-content {
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .hero-badge-dot {
      position: relative;
      width: 0.5rem;
      height: 0.5rem;
    }

    .hero-badge-dot::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--primary);
      animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .hero-badge-dot::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--primary);
    }

    @keyframes ping {

      75%,
      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.025em;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      margin-top: 1.5rem;
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .hero-cta {
      margin-top: 2.5rem;
    }

    .hero-cta .btn {
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }

    /* Stats */
    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 1024px;
      margin: 4rem auto 0;
      padding: 0 1.5rem;
    }

    .stat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1.5rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .stat-card svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
    }

    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .stat-label {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Dashboard Preview */
    .dashboard-preview {
      margin-top: 4rem;
      padding: 0 1.5rem;
    }

    .dashboard-wrapper {
      position: relative;
      max-width: 1024px;
      margin: 0 auto;
    }

    .dashboard-glow {
      position: absolute;
      inset: -1rem;
      background: rgba(59, 130, 246, 0.05);
      border-radius: 1.5rem;
      filter: blur(32px);
    }

    .dashboard-container {
      position: relative;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .browser-chrome {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      background: var(--muted);
      border-bottom: 1px solid var(--border);
    }

    .browser-dots {
      display: flex;
      gap: 0.375rem;
    }

    .browser-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
    }

    .browser-dot-red {
      background: rgba(239, 68, 68, 0.6);
    }

    .browser-dot-yellow {
      background: rgba(245, 158, 11, 0.6);
    }

    .browser-dot-green {
      background: rgba(16, 185, 129, 0.6);
    }

    .browser-url {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .browser-url span {
      padding: 0.25rem 1rem;
      background: var(--background);
      border-radius: 0.375rem;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .dashboard-content {
      padding: 1.5rem;
    }

    .dashboard-grid {
      display: grid;
      gap: 1rem;
    }

    .map-preview {
      position: relative;
      height: 16rem;
      background: rgba(241, 245, 249, 0.5);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      overflow: hidden;
    }

    .map-grid-bg {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDBoNDB2NDBoLTQweiIvPjxwYXRoIGQ9Ik00MCAwdjQwSDBWMGg0MHpNMSAxdjM4aDM4VjFIMXoiIGZpbGw9IiNlNWU3ZWIiIGZpbGwtb3BhY2l0eT0iLjUiLz48L2c+PC9zdmc+");
      opacity: 0.5;
    }

    .map-routes {
      position: absolute;
      inset: 0;
    }

    .map-marker {
      position: absolute;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .map-marker-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background: white;
    }

    .map-marker-1 {
      top: 25%;
      left: 25%;
      background: var(--primary);
    }

    .map-marker-2 {
      top: 50%;
      left: 50%;
      background: var(--accent);
    }

    .map-marker-3 {
      top: 33%;
      right: 25%;
      background: var(--primary);
    }

    .map-info {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      padding: 0.5rem 0.75rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: 0.5rem;
      font-size: 0.75rem;
    }

    .map-info-label {
      color: var(--muted-foreground);
    }

    .map-info-value {
      font-weight: 600;
    }

    .side-panel {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .status-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background: rgba(241, 245, 249, 0.5);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
    }

    .status-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
    }

    .status-dot-primary {
      background: var(--primary);
    }

    .status-dot-accent {
      background: var(--accent);
    }

    .status-dot-yellow {
      background: var(--chart-4);
    }

    .status-label {
      flex: 1;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .status-value {
      font-size: 1.125rem;
      font-weight: 700;
    }

    .delivery-time-card {
      padding: 1rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 0.75rem;
    }

    .delivery-time-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--primary);
    }

    .delivery-time-value {
      font-size: 1.5rem;
      font-weight: 700;
      margin-top: 0.25rem;
    }

    .delivery-time-change {
      font-size: 0.75rem;
      color: var(--accent);
      margin-top: 0.25rem;
    }

    /* Features Section */
    .features {
      padding: 5rem 1.5rem;
      background: var(--background);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      max-width: 1024px;
      margin: 0 auto;
    }

    .feature-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .feature-icon {
      position: relative;
      margin-bottom: 1.5rem;
    }

    .feature-icon-glow {
      position: absolute;
      inset: 0;
      background: rgba(59, 130, 246, 0.2);
      border-radius: 50%;
      filter: blur(12px);
    }

    .feature-icon-container {
      position: relative;
      width: 5rem;
      height: 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.1);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: 50%;
      transition: all 0.3s;
    }

    .feature-card:hover .feature-icon-container {
      border-color: rgba(59, 130, 246, 0.4);
      transform: scale(1.05);
    }

    .feature-icon-container svg {
      width: 2.25rem;
      height: 2.25rem;
      color: var(--primary);
    }

    .feature-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--primary);
    }

    .feature-description {
      margin-top: 0.75rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      max-width: 200px;
    }

    /* How It Works Section */
    .how-it-works {
      padding: 5rem 1.5rem;
      background: var(--card);
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }

    .steps-grid {
      display: grid;
      gap: 3rem;
      max-width: 1024px;
      margin: 4rem auto 0;
    }

    .step-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .step-number-container {
      position: relative;
      margin-bottom: 2rem;
    }

    .step-number-glow {
      position: absolute;
      inset: 0;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 50%;
      filter: blur(16px);
    }

    .step-number {
      position: relative;
      width: 7rem;
      height: 7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: 50%;
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
    }

    .step-card:hover .step-number {
      border-color: rgba(59, 130, 246, 0.4);
      transform: scale(1.05);
    }

    .step-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary);
    }

    .step-description {
      margin-top: 0.75rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      max-width: 280px;
    }

    /* Pricing Section */
    .pricing {
      padding: 5rem 1.5rem;
    }

    .pricing-header {
      max-width: 512px;
      margin: 0 auto;
      text-align: center;
    }

    .pricing-label {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--primary);
    }

    .pricing-title {
      margin-top: 0.5rem;
      font-size: 2rem;
      font-weight: 700;
    }

    .pricing-description {
      margin-top: 1rem;
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .pricing-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 0.5rem 1rem;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 9999px;
      font-size: 0.875rem;
    }

    .pricing-badge svg {
      width: 1rem;
      height: 1rem;
      color: var(--accent);
    }

    .pricing-badge span {
      font-weight: 500;
    }

    .pricing-grid {
      display: grid;
      gap: 2rem;
      max-width: 1024px;
      margin: 4rem auto 0;
    }

    .pricing-card {
      position: relative;
      padding: 2rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
    }

    .pricing-card-popular {
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
      ring: 1px solid var(--primary);
    }

    .pricing-popular-badge {
      position: absolute;
      top: -0.875rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 0.25rem 1rem;
      background: var(--primary);
      color: var(--primary-foreground);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 9999px;
    }

    .pricing-savings-badge {
      position: absolute;
      top: -0.875rem;
      right: 1rem;
      padding: 0.25rem 0.75rem;
      background: var(--accent);
      color: var(--accent-foreground);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 9999px;
    }

    .pricing-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .pricing-card-icon {
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 0.75rem;
    }

    .pricing-card-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
    }

    .pricing-card-name {
      font-size: 1.125rem;
      font-weight: 600;
    }

    .pricing-card-desc {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .pricing-credits {
      margin-top: 1.5rem;
      padding: 1rem;
      background: rgba(241, 245, 249, 0.5);
      border-radius: 0.75rem;
    }

    .pricing-credits-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pricing-credits-row+.pricing-credits-row {
      margin-top: 0.5rem;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border);
    }

    .pricing-credits-label {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .pricing-credits-value {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .pricing-credits-price {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--primary);
    }

    .pricing-total {
      margin-top: 1rem;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.25rem;
    }

    .pricing-total-value {
      font-size: 2rem;
      font-weight: 700;
    }

    .pricing-total-currency {
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .pricing-features {
      margin-top: 1.5rem;
      list-style: none;
    }

    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.375rem 0;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .pricing-feature-check {
      width: 1.25rem;
      height: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .pricing-feature-check svg {
      width: 0.75rem;
      height: 0.75rem;
      color: var(--primary);
    }

    .pricing-card .btn {
      width: 100%;
      margin-top: 2rem;
    }

    .pricing-info {
      max-width: 1024px;
      margin: 3rem auto 0;
      padding: 1.5rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      text-align: center;
      color: var(--muted-foreground);
    }

    .pricing-info strong {
      color: var(--foreground);
    }

    /* Mobile App Section */
    .mobile-app {
      padding: 5rem 1.5rem;
      background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
    }

    .mobile-app-container {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .mobile-app-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }

    .mobile-app-content {
      text-align: center;
    }

    @media (min-width: 768px) {
      .mobile-app-content {
        text-align: left;
      }
    }

    .mobile-app-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .mobile-app-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }

    .mobile-app-description {
      margin-top: 1rem;
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .mobile-app-features {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-app-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--foreground);
    }

    .mobile-app-feature svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    .mobile-app-store-badges {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .mobile-app-store-badges {
        justify-content: flex-start;
      }
    }

    .mobile-app-store-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      background: var(--foreground);
      color: var(--background);
      border-radius: var(--radius);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    .mobile-app-store-badge:hover {
      background: var(--primary);
      color: var(--primary-foreground);
    }

    .mobile-app-store-badge svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    /* Phone Mockup & Slider */
    .phone-mockup {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }

    .phone-frame {
      position: relative;
      background: var(--foreground);
      border-radius: 2.5rem;
      padding: 0.75rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .phone-notch {
      position: absolute;
      top: 0.75rem;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 28px;
      background: var(--foreground);
      border-radius: 0 0 1rem 1rem;
      z-index: 10;
    }

    .phone-screen {
      position: relative;
      background: var(--background);
      border-radius: 1.75rem;
      overflow: hidden;
      aspect-ratio: 9/19;
    }

    .phone-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .phone-slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .phone-slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary);
    }

    .phone-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
    }

    .phone-slide-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--muted-foreground);
      font-size: 0.875rem;
      gap: 0.5rem;
    }

    .phone-slide-placeholder svg {
      width: 3rem;
      height: 3rem;
      color: var(--muted-foreground);
    }

    /* Slider Dots Below Phone */
    .slider-dots-below {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .slider-dots-below .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--muted-foreground);
      opacity: 0.4;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }

    .slider-dots-below .slider-dot.active {
      background: var(--primary);
      opacity: 1;
      width: 28px;
      border-radius: 5px;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20;
      transition: all 0.2s;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .slider-nav:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
    }

    .slider-nav svg {
      width: 20px;
      height: 20px;
      color: var(--foreground);
    }

    .slider-prev {
      left: -20px;
    }

    .slider-next {
      right: -20px;
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
      .phone-mockup {
        max-width: 240px;
      }

      .slider-nav {
        display: none;
      }
    }

    /* Admin Panel Section */
    .admin-panel {
      padding: 5rem 1.5rem;
      background: linear-gradient(135deg, var(--card) 0%, var(--background) 100%);
    }

    .admin-panel-container {
      max-width: 1024px;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .admin-panel-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
      }
    }

    .admin-panel-content {
      text-align: center;
    }

    @media (min-width: 768px) {
      .admin-panel-content {
        text-align: left;
        order: 2;
      }
    }

    .admin-panel-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }

    .admin-panel-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1.2;
    }

    .admin-panel-description {
      margin-top: 1rem;
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .admin-panel-features {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .admin-panel-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--foreground);
    }

    .admin-panel-feature svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
      flex-shrink: 0;
    }

    .admin-panel-btn {
      margin-top: 2rem;
      display: inline-flex;
    }

    /* Browser Mockup */
    .browser-mockup {
      position: relative;
      max-width: 120%;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .browser-mockup {
        order: 1;
        margin-left: -30%;
        transform: scale(1);
        transform-origin: left center;
        width: 130%;
      }
    }

    .browser-frame {
      position: relative;
      background: var(--foreground);
      border-radius: 1rem;
      padding: 0.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .browser-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.75rem 0.75rem;
      background: var(--foreground);
      border-radius: 0.5rem 0.5rem 0 0;
    }

    .browser-dots {
      display: flex;
      gap: 0.375rem;
    }

    .browser-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
    }

    .browser-dot-red {
      background: #ef4444;
    }

    .browser-dot-yellow {
      background: #f59e0b;
    }

    .browser-dot-green {
      background: #10b981;
    }

    .browser-address-bar {
      flex: 1;
      margin-left: 0.75rem;
      padding: 0.25rem 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 0.375rem;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .browser-screen {
      position: relative;
      background: var(--background);
      border-radius: 0 0 0.5rem 0.5rem;
      overflow: hidden;
      aspect-ratio: 16/9;
    }

    .browser-slider {
      position: relative;
      width: 100%;
      height: 100%;
      cursor: grab;
    }

    .browser-slider:active {
      cursor: grabbing;
    }

    .browser-slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }

    .browser-slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary);
    }

    .browser-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #ffffff;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
    }

    .browser-slide-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--muted-foreground);
      font-size: 0.875rem;
      gap: 0.5rem;
    }

    .browser-slide-placeholder svg {
      width: 3rem;
      height: 3rem;
      color: var(--muted-foreground);
    }

    /* Browser Slider Dots */
    .browser-slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .browser-slider-dots .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--muted-foreground);
      opacity: 0.4;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }

    .browser-slider-dots .slider-dot.active {
      background: var(--accent);
      opacity: 1;
      width: 28px;
      border-radius: 5px;
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border);
      background: var(--card);
      padding: 3rem 1.5rem;
    }

    .footer-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    .footer-brand p {
      margin-top: 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      max-width: 320px;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .footer-contact {
        align-items: flex-end;
        text-align: right;
      }
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    @media (min-width: 768px) {
      .footer-contact-item {
        flex-direction: row-reverse;
      }
    }

    .footer-contact-item:hover {
      color: var(--foreground);
    }

    .footer-contact-item svg {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
    }

    .footer-contact-item a {
      color: inherit;
      text-decoration: none;
    }

    .footer-contact-item a:hover {
      color: var(--primary);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer-social a {
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--foreground);
    }

    .footer-social svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .footer-links h3 {
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--foreground);
    }

    .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Responsive */
    @media (min-width: 640px) {
      .stats {
        grid-template-columns: repeat(4, 1fr);
      }

      .hero h1 {
        font-size: 3rem;
      }

      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .dashboard-grid {
        grid-template-columns: 2fr 1fr;
      }

      .map-preview {
        height: 20rem;
      }

      .features-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-content {
        grid-template-columns: 2fr 3fr;
      }

      .footer-links {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .nav-links {
        display: flex;
      }

      .nav-buttons {
        display: flex;
      }

      .mobile-menu-btn {
        display: none;
      }

      .hero {
        padding: 10rem 2rem 8rem;
      }

      .hero h1 {
        font-size: 3.75rem;
      }

      .stat-value {
        font-size: 1.875rem;
      }

      .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-links {
        grid-template-columns: repeat(4, 1fr);
      }
    }