    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #2b5a7c;
      --primary-dark: #1e4259;
      --primary-light: #e8f1f5;
      --gold: #c4a052;
      --gold-light: #f5f0e3;
      --cream: #fdfbf7;
      --text-dark: #1a1a1a;
      --text-medium: #4a4a4a;
      --text-light: #717171;
      --white: #ffffff;
      --danger: #e74c3c;
      --success: #27ae60;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(253, 251, 247, 0.98);
      backdrop-filter: blur(20px);
      z-index: 1000;
      padding: 15px 0;
      transition: all 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-img {
      height: 50px;
      transition: all 0.3s ease;
    }

    .nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-medium);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.3s;
      position: relative;
    }

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

    .nav-cta {
      background: var(--primary);
      color: white;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.4s ease;
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(43, 90, 124, 0.3);
    }

    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .mobile-menu-btn span {
      width: 25px;
      height: 2px;
      background: var(--text-dark);
      transition: all 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(253, 251, 247, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-size: 20px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .mobile-menu .mobile-cta {
      background: var(--primary);
      color: white;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      margin-top: 20px;
    }

    .mobile-menu .mobile-cta:hover {
      background: var(--primary-dark);
      color: white;
    }

    /* Partners/Builders Section */
    .partners-section {
      padding: 60px 0;
      background: var(--white);
      border-top: 1px solid rgba(0,0,0,0.05);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .partners-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .partners-header h3 {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .partners-track-wrapper {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .partners-track-wrapper::before,
    .partners-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 150px;
      z-index: 2;
      pointer-events: none;
    }

    .partners-track-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, var(--white), transparent);
    }

    .partners-track-wrapper::after {
      right: 0;
      background: linear-gradient(-90deg, var(--white), transparent);
    }

    .partners-track {
      display: flex;
      gap: 60px;
      animation: scroll 30s linear infinite;
      width: max-content;
    }

    .partners-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      height: 80px;
      background: var(--cream);
      border-radius: 12px;
      padding: 15px 25px;
      transition: all 0.3s ease;
    }

    .partner-logo:hover {
      background: var(--gold-light);
      transform: scale(1.05);
    }

    .partner-logo svg {
      max-width: 140px;
      max-height: 50px;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--cream) 0%, #f0f7fa 50%, var(--gold-light) 100%);
      padding-top: 80px;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 60px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-light);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .hero-title span {
      color: var(--primary);
      position: relative;
    }

    .hero-title span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: var(--gold);
      opacity: 0.3;
      z-index: -1;
    }

    .hero-description {
      font-size: 17px;
      color: var(--text-light);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-medium);
    }

    .hero-feature-icon {
      width: 36px;
      height: 36px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      padding: 16px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.4s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(43, 90, 124, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-dark);
      padding: 16px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      border: 2px solid var(--text-dark);
      transition: all 0.4s ease;
    }

    .btn-outline:hover {
      background: var(--text-dark);
      color: white;
    }

    /* Hero Illustration */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-illustration-container {
      position: relative;
      width: 100%;
      max-width: 500px;
    }

    .hero-main-illustration {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 16px 20px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float 4s ease-in-out infinite;
    }

    .floating-card.card-1 {
      top: 10%;
      right: -10%;
      animation-delay: 0s;
    }

    .floating-card.card-2 {
      bottom: 20%;
      left: -5%;
      animation-delay: -2s;
    }

    .floating-card.card-3 {
      bottom: 5%;
      right: 5%;
      animation-delay: -1s;
    }

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

    .floating-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .floating-card-icon.gold { background: var(--gold-light); }
    .floating-card-icon.blue { background: var(--primary-light); }
    .floating-card-icon.green { background: #e8f5e9; }

    .floating-card-text h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .floating-card-text p {
      font-size: 11px;
      color: var(--text-light);
    }

    /* Section Styles */
    .section {
      padding: 100px 0;
    }

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

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      padding: 8px 20px;
      background: var(--gold-light);
      border-radius: 50px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--text-dark);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* Problem Section */
    .problem-section {
      background: var(--white);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .problem-illustration {
      position: relative;
    }

    .problem-content h3 {
      font-size: 36px;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .problem-content > p {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .problem-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: #fef5f5;
      border-radius: 12px;
      border-left: 4px solid var(--danger);
    }

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

    .problem-item h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .problem-item p {
      font-size: 13px;
      color: var(--text-light);
    }

    /* Solution Section */
    .solution-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .solution-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .solution-section .section-tag {
      background: rgba(255,255,255,0.15);
      color: var(--gold);
    }

    .solution-section .section-title {
      color: white;
    }

    .solution-section .section-subtitle {
      color: rgba(255,255,255,0.8);
    }

    .solution-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .solution-features {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .solution-feature {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .solution-feature:hover {
      background: rgba(255,255,255,0.15);
      transform: translateX(10px);
    }

    .solution-feature-icon {
      width: 56px;
      height: 56px;
      background: var(--gold);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .solution-feature h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .solution-feature p {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }

    /* Journey Section */
    .journey-section {
      background: var(--cream);
    }

    .journey-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .journey-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--gold), var(--primary), var(--success));
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .journey-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 80px;
      position: relative;
    }

    .journey-step:last-child {
      margin-bottom: 0;
    }

    .journey-step::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 40px;
      width: 24px;
      height: 24px;
      background: var(--gold);
      border-radius: 50%;
      transform: translateX(-50%);
      border: 4px solid var(--cream);
      z-index: 2;
    }

    .journey-step:nth-child(2)::before {
      background: var(--primary);
    }

    .journey-step:nth-child(3)::before {
      background: var(--success);
    }

    .journey-step:nth-child(even) .journey-content {
      order: 2;
      text-align: left;
    }

    .journey-step:nth-child(even) .journey-visual {
      order: 1;
    }

    .journey-step:nth-child(odd) .journey-content {
      text-align: right;
    }

    .journey-number {
      display: inline-block;
      font-family: 'Playfair Display', serif;
      font-size: 64px;
      font-weight: 700;
      color: var(--primary-light);
      line-height: 1;
      margin-bottom: 16px;
    }

    .journey-content h3 {
      font-size: 28px;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .journey-content p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .journey-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .journey-illustration {
      width: 100%;
      max-width: 350px;
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    /* Pricing Section */
    .pricing-section {
      background: var(--white);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .iceberg-visual {
      position: relative;
    }

    .iceberg-svg {
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
      display: block;
    }

    .pricing-info h3 {
      font-size: 36px;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .pricing-info > p {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .cost-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cost-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: #fef5f5;
      border-radius: 10px;
      border-left: 3px solid var(--danger);
    }

    .cost-item span {
      font-size: 14px;
      color: var(--text-medium);
    }

    .cost-item strong {
      font-size: 15px;
      color: var(--danger);
      font-weight: 600;
    }

    /* Benefits Section */
    .benefits-section {
      background: var(--cream);
    }

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

    .benefit-card {
      background: white;
      padding: 36px 28px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.1);
      border-color: var(--gold);
    }

    .benefit-icon {
      width: 72px;
      height: 72px;
      background: var(--gold-light);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin: 0 auto 24px;
    }

    .benefit-card h3 {
      font-size: 20px;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .benefit-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* Team Section */
    .team-section {
      background: var(--white);
    }

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

    .team-card {
      text-align: center;
    }

    .team-avatar-container {
      position: relative;
      margin-bottom: 24px;
    }

    .team-avatar {
      width: 200px;
      height: 200px;
      margin: 0 auto;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .team-avatar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .team-initials {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      font-weight: 700;
      color: white;
      position: relative;
      z-index: 2;
    }

    .team-badge {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--primary-dark);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .team-info h3 {
      font-size: 24px;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .team-info .role {
      font-size: 13px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .team-info p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
      max-width: 280px;
      margin: 0 auto;
    }

    .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the circle without stretching */
  border-radius: 50%;      /* ensures perfect circle */
  position: relative;
  z-index: 2;
}

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      color: white;
      margin-bottom: 20px;
    }

    .cta-content p {
      font-size: 18px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 40px;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 50px;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--primary-dark);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.4s ease;
    }

    .btn-gold:hover {
      background: #d4b062;
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(196, 160, 82, 0.4);
    }

    .btn-white-outline {
      background: transparent;
      color: white;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid white;
      transition: all 0.4s ease;
    }

    .btn-white-outline:hover {
      background: white;
      color: var(--primary);
    }

    .cta-contact {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.2);
    }

    .cta-contact-item {
      text-align: center;
    }

    .cta-contact-item span {
      display: block;
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .cta-contact-item a, .cta-contact-item p {
      font-size: 16px;
      color: white;
      text-decoration: none;
      font-weight: 500;
    }

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

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

    .footer-brand {
      max-width: 300px;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .footer-links h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }

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

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

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.3s;
    }

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

    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .hero-content,
      .problem-grid,
      .solution-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .hero-visual {
        order: -1;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .journey-line {
        left: 20px;
      }

      .journey-step {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 60px;
      }

      .journey-step::before {
        left: 20px;
        transform: translateX(-50%);
      }

      .journey-step:nth-child(odd) .journey-content,
      .journey-step:nth-child(even) .journey-content {
        text-align: left;
        order: 1;
      }

      .journey-step:nth-child(even) .journey-visual {
        order: 2;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .mobile-menu {
        display: flex;
      }

      .section {
        padding: 70px 0;
      }

      .benefits-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .team-avatar {
        width: 160px;
        height: 160px;
      }

      .team-initials {
        font-size: 48px;
      }

      .cta-contact {
        flex-direction: column;
        gap: 24px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .floating-card {
        padding: 12px 16px;
      }

      .floating-card.card-1 {
        right: 0;
        top: 5%;
      }

      .floating-card.card-2 {
        left: 0;
      }

      .floating-card.card-3 {
        right: 0;
      }

      .partners-track {
        gap: 40px;
      }

      .partner-logo {
        min-width: 150px;
        height: 70px;
        padding: 12px 20px;
      }
    }

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

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
      }

      .hero-features {
        flex-direction: column;
      }

      .cta-buttons {
        flex-direction: column;
        width: 100%;
      }

      .cta-buttons a {
        width: 100%;
        text-align: center;
      }

      .journey-step {
        padding-left: 50px;
      }

      .journey-number {
        font-size: 48px;
      }

      .journey-content h3 {
        font-size: 24px;
      }
    }