  :root {
      --primary: #E87D3E;
      --primary-hover: #D66D2E;
      --primary-light: #FFF4ED;
      --primary-dark: #B85A28;
      --bg-main: #FAFAF9;
      --bg-card: #FFFFFF;
      --text-primary: #1C1917;
      --text-secondary: #57534E;
      --text-muted: #78716C;
      --border: #E7E5E4;
      --border-light: #F5F5F4;
      --star: #F59E0B;
      --success: #10B981;
      --success-light: #D1FAE5;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    * { 
      box-sizing: border-box; 
      margin: 0;
      padding: 0;
    }
    
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg-main);
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Rubik', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Container */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      box-shadow: var(--shadow-sm);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      box-shadow: var(--shadow-md);
    }

    .brand-text h1 {
      font-size: 18px;
      color: var(--text-primary);
      margin: 0;
    }

    .brand-text p {
      font-size: 12px;
      color: var(--text-muted);
      margin: 0;
    }

    nav {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    nav a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.2s;
      position: relative;
    }

    nav a:hover {
      color: var(--primary);
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-outline {
      background: transparent;
      color: var(--text-primary);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      background: var(--bg-main);
      border-color: var(--primary);
      color: var(--primary);
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Hero Section */
    .hero {
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-left h2 {
      font-size: 48px;
      color: var(--text-primary);
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .hero-left .highlight {
      color: var(--primary);
    }

    .hero-left .lead {
      font-size: 18px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.7;
      text-align: justify;
    }

    .search-box {
      background: white;
      border-radius: 16px;
      padding: 8px;
      display: flex;
      gap: 8px;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      margin-bottom: 32px;
    }

    .search-box input,
    .search-box select {
      border: none;
      padding: 14px 16px;
      font-size: 15px;
      border-radius: 10px;
      background: var(--bg-main);
      outline: none;
      color: var(--text-primary);
      flex: 1;
      font-family: inherit;
    }

    .search-box input:focus,
    .search-box select:focus {
      background: white;
      box-shadow: 0 0 0 2px var(--primary-light);
    }

    .search-btn {
      background: var(--primary);
      color: white;
      border-radius: 10px;
      padding: 14px 24px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }

    .search-btn:hover {
      background: var(--primary-hover);
      transform: scale(1.02);
    }

    .hero-features {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      background: white;
      padding: 12px 16px;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
    }

    .hero-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .hero-feature-icon.verified {
      background: linear-gradient(135deg, #F59E0B, #F97316);
      color: white;
    }

    .hero-feature-icon.location {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
    }

    .hero-feature-text h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 2px;
    }

    .hero-feature-text p {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-right {
      position: relative;
    }

    .hero-image-wrapper {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-2xl);
      background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
      height: 100px;
      min-height: 700px;
      width: 550px;
    }

    .hero-image-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(232, 125, 62, 0.1) 100%);
      z-index: 1;
    }

    .hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .floating-badge {
      position: absolute;
      background: white;
      padding: 12px 16px;
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 3s ease-in-out infinite;
    }

    .floating-badge.top {
      top: 20px;
      right: 20px;
    }

    .floating-badge.bottom {
      bottom: 20px;
      left: 20px;
    }

    .floating-badge i {
      font-size: 20px;
    }

    .floating-badge.verified i {
      color: var(--success);
    }

    .floating-badge.rating i {
      color: var(--star);
    }

    .floating-badge-text {
      font-size: 13px;
    }

    .floating-badge-text strong {
      display: block;
      font-weight: 700;
      color: var(--text-primary);
    }

    .floating-badge-text span {
      color: var(--text-muted);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Features Section */
    .features {
      padding: 80px 0;
      background: white;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-header h3 {
      font-size: 36px;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 18px;
      color: var(--text-secondary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .feature-card {
      background: var(--bg-main);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary-light), #FFEDD5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--primary);
    }

    .feature-card h4 {
      font-size: 20px;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* How It Works */
    .how-it-works {
      padding: 80px 0;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
    }

    .step-card {
      background: white;
      border-radius: 20px;
      padding: 36px;
      text-align: center;
      border: 2px solid var(--border-light);
      position: relative;
      transition: all 0.3s;
    }

    .step-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
    }

    .step-number {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      box-shadow: var(--shadow-md);
    }

    .step-icon {
      width: 80px;
      height: 80px;
      margin: 20px auto 24px;
      border-radius: 20px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: var(--primary);
    }

    .step-card h4 {
      font-size: 22px;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .step-card p {
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Professionals */
    .professionals {
      padding: 80px 0;
      background: white;
    }

    .pro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .pro-card {
      background: var(--bg-main);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s;
      cursor: pointer;
    }

    .pro-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary);
    }

    .pro-header {
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .pro-avatar {
      width: 72px;
      height: 72px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid white;
      box-shadow: var(--shadow-md);
      flex-shrink: 0;
      background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    }

    .pro-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pro-info h5 {
      font-size: 18px;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .pro-role {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 10px;
    }

    .pro-badges {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .badge {
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .badge-verified {
      background: var(--success-light);
      color: var(--success);
    }

    .badge-rating {
      background: #FEF3C7;
      color: #D97706;
    }

    .pro-footer {
      padding: 16px 24px;
      background: white;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .pro-location {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pro-status {
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
    }

    .pro-status.available {
      background: var(--success-light);
      color: var(--success);
    }

    .pro-status.unavailable {
      background: #FEE2E2;
      color: #DC2626;
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 0;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 32px;
      padding: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-2xl);
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-box h3 {
      font-size: 36px;
      color: white;
      margin-bottom: 16px;
    }

    .cta-box p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--primary);
      padding: 14px 32px;
      font-size: 16px;
    }

    .btn-white:hover {
      background: var(--bg-main);
      transform: translateY(-2px);
    }

    .btn-outline-white {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 14px 32px;
      font-size: 16px;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background: var(--text-primary);
      color: white;
      padding: 60px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 40px;
    }

    .footer-brand h4 {
      font-size: 20px;
      margin-bottom: 12px;
      font-family: 'Rubik', Courier, monospace;
      text-transform: uppercase;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 20px;
      
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    .footer-links h5 {
      font-size: 16px;
      margin-bottom: 16px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: white;
    }

/* Responsive */
    @media (max-width: 1200px) {
      .container {
        padding: 0 20px;
      }

      .hero-image-wrapper {
        width: 100%;
        min-height: 500px;
      }
    }

    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-right {
        order: -1;
      }

      .hero-image-wrapper {
        width: 100%;
        min-height: 450px;
      }

      .features-grid,
      .steps-grid,
      .pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .hero {
        padding: 40px 0;
      }

      .features,
      .how-it-works,
      .professionals,
      .cta-section {
        padding: 60px 0;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 16px;
      }

      /* Header Mobile */
      .header-content {
        padding: 12px 0;
      }

      .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }

      .brand-text h1 {
        font-size: 16px;
      }

      .brand-text p {
        font-size: 11px;
      }

      nav {
        display: none;
      }

      .header-actions {
        gap: 8px;
      }

      .header-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
      }

      .header-actions .btn i {
        display: none;
      }

      /* Hero Mobile */
      .hero {
        padding: 30px 0;
      }

      .hero-left h2 {
        font-size: 28px;
        margin-bottom: 16px;
      }

      .hero-left .lead {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .search-box {
        flex-direction: column;
        padding: 12px;
        margin-bottom: 24px;
      }

      .search-box input,
      .search-box select {
        padding: 12px 14px;
        font-size: 14px;
      }

      .search-btn {
        padding: 12px 20px;
        justify-content: center;
      }

      .hero-features {
        flex-direction: column;
        gap: 12px;
      }

      .hero-feature {
        padding: 12px;
      }

      .hero-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }

      .hero-feature-text h4 {
        font-size: 13px;
      }

      .hero-feature-text p {
        font-size: 11px;
      }

      .hero-image-wrapper {
        width: 100%;
        min-height: 350px;
        border-radius: 16px;
      }

      .floating-badge {
        padding: 8px 12px;
        border-radius: 8px;
      }

      .floating-badge.top {
        top: 12px;
        right: 12px;
      }

      .floating-badge.bottom {
        bottom: 12px;
        left: 12px;
      }

      .floating-badge i {
        font-size: 16px;
      }

      .floating-badge-text {
        font-size: 11px;
      }

      /* Sections Mobile */
      .features,
      .how-it-works,
      .professionals {
        padding: 50px 0;
      }

      .section-header {
        margin-bottom: 40px;
      }

      .section-header h3 {
        font-size: 24px;
        margin-bottom: 12px;
      }

      .section-header p {
        font-size: 16px;
      }

      .features-grid,
      .steps-grid,
      .pro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .feature-card {
        padding: 24px;
        border-radius: 16px;
      }

      .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
      }

      .feature-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .feature-card p {
        font-size: 14px;
      }

      /* Steps Mobile */
      .steps-grid {
        margin-top: 40px;
      }

      .step-card {
        padding: 28px 20px;
        border-radius: 16px;
      }

      .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -18px;
      }

      .step-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin: 16px auto 20px;
      }

      .step-card h4 {
        font-size: 19px;
        margin-bottom: 10px;
      }

      .step-card p {
        font-size: 14px;
      }

      /* Professionals Mobile */
      .pro-card {
        border-radius: 16px;
      }

      .pro-header {
        padding: 20px;
        gap: 12px;
      }

      .pro-avatar {
        width: 64px;
        height: 64px;
      }

      .pro-info h5 {
        font-size: 16px;
        margin-bottom: 4px;
      }

      .pro-role {
        font-size: 13px;
        margin-bottom: 8px;
      }

      .pro-badges {
        gap: 6px;
      }

      .badge {
        padding: 3px 8px;
        font-size: 11px;
      }

      .pro-footer {
        padding: 14px 20px;
      }

      .pro-location {
        font-size: 12px;
      }

      .pro-status {
        font-size: 11px;
        padding: 3px 8px;
      }

      /* CTA Mobile */
      .cta-section {
        padding: 50px 0;
      }

      .cta-box {
        padding: 40px 20px;
        border-radius: 20px;
      }

      .cta-box h3 {
        font-size: 24px;
        margin-bottom: 12px;
      }

      .cta-box p {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .cta-actions {
        flex-direction: column;
        gap: 12px;
      }

      .btn-white,
      .btn-outline-white {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
      }

      /* Footer Mobile */
      footer {
        padding: 40px 0 20px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }

      .footer-brand h4 {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .footer-brand p {
        font-size: 14px;
        margin-bottom: 16px;
      }

      .footer-social {
        gap: 10px;
      }

      .social-link {
        width: 36px;
        height: 36px;
      }

      .footer-links h5 {
        font-size: 15px;
        margin-bottom: 12px;
      }

      .footer-links li {
        margin-bottom: 8px;
      }

      .footer-links a {
        font-size: 14px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
        font-size: 13px;
      }

      .footer-bottom-links {
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 12px;
      }

      .hero-left h2 {
        font-size: 24px;
      }

      .hero-left .lead {
        font-size: 15px;
      }

      .section-header h3 {
        font-size: 22px;
      }

      .section-header p {
        font-size: 15px;
      }

      .cta-box h3 {
        font-size: 22px;
      }

      .cta-box p {
        font-size: 15px;
      }

      .hero-image-wrapper {
        min-height: 450px;
      }
    }