/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Navigation */
.innovative-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.innovative-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.innovative-company-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.innovative-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #0066ff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.innovative-logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #64748b;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.innovative-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.innovative-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.innovative-nav-link:hover,
.innovative-nav-link.innovative-active {
    color: #0066ff;
}

.innovative-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    transition: width 0.3s ease;
}

.innovative-nav-link:hover::after,
.innovative-nav-link.innovative-active::after {
    width: 100%;
}

.innovative-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.innovative-bar {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.innovative-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.innovative-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.innovative-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 163, 255, 0.03) 0%, transparent 50%);
    background-size: 100px 100px, 150px 150px;
}

.innovative-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovative-hero-text {
    color: #1a1a1a;
}

.innovative-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.innovative-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.innovative-gradient-text {
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovative-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.innovative-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Industry Solutions */
.innovative-industry-solutions {
    padding: 120px 0;
    background: #ffffff;
}

.innovative-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.innovative-section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.innovative-section-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.innovative-section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.innovative-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.innovative-industry-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.innovative-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.innovative-industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.innovative-industry-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.innovative-industry-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.innovative-industry-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.innovative-industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.innovative-industry-features span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #475569;
    font-weight: 500;
}

.innovative-industry-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.innovative-industry-cta:hover {
    color: #00a3ff;
    transform: translateX(4px);
}

/* Technology Innovation Cases */
.innovative-innovation-cases {
    padding: 120px 0;
    background: #f8fafc;
}

.innovative-cases-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.innovative-case-item.innovative-reverse {
    direction: rtl;
}

.innovative-case-item.innovative-reverse > * {
    direction: ltr;
}

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

.innovative-case-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.innovative-case-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.innovative-case-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
}

.innovative-case-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.innovative-case-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
}

.innovative-case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.innovative-stat {
    text-align: center;
}

.innovative-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0066ff;
    line-height: 1;
}

.innovative-stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Project Implementation Process */
.innovative-implementation-process {
    padding: 120px 0;
    background: #ffffff;
}

.innovative-process-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.innovative-process-stage {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.innovative-process-stage:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.innovative-stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.innovative-stage-content {
    flex: 1;
}

.innovative-stage-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.innovative-stage-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 16px;
}

.innovative-stage-duration {
    color: #0066ff;
    font-weight: 600;
    font-size: 14px;
}

/* Technical Advantages */
.innovative-technical-advantages {
    padding: 120px 0;
    background: #f8fafc;
}

.innovative-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.innovative-advantage-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.innovative-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.innovative-advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
}

.innovative-advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.innovative-advantage-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.innovative-advantage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.innovative-advantage-features span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #475569;
    font-weight: 500;
}

/* Client Collaboration Cases */
.innovative-client-collaboration {
    padding: 120px 0;
    background: #ffffff;
}

.innovative-collaboration-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.innovative-collaboration-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.innovative-collaboration-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.innovative-client-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    flex-shrink: 0;
}

.innovative-client-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.innovative-collaboration-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.innovative-collaboration-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.innovative-collaboration-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.innovative-result {
    text-align: center;
}

.innovative-result-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0066ff;
    line-height: 1;
}

.innovative-result-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Footer */
.innovative-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 32px;
}

.innovative-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.innovative-footer-section h3,
.innovative-footer-section h4 {
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 600;
}

.innovative-footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 16px;
}

.innovative-footer-section ul {
    list-style: none;
}

.innovative-footer-section ul li {
    margin-bottom: 12px;
}

.innovative-footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.innovative-footer-section ul li a:hover {
    color: #0066ff;
}

.innovative-footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovative-nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
        gap: 24px;
    }

    .innovative-nav-menu.innovative-active {
        left: 0;
    }

    .innovative-hamburger {
        display: flex;
    }

    .innovative-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .innovative-hero-title {
        font-size: 40px;
    }

    .innovative-industry-grid {
        grid-template-columns: 1fr;
    }

    .innovative-case-item {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .innovative-case-item.innovative-reverse {
        direction: ltr;
    }

    .innovative-process-stage {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .innovative-advantages-grid {
        grid-template-columns: 1fr;
    }

    .innovative-collaboration-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .innovative-client-logo {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .innovative-hero-title {
        font-size: 32px;
    }

    .innovative-container {
        padding: 0 16px;
    }

    .innovative-collaboration-item {
        padding: 32px;
    }

    .innovative-process-stage {
        padding: 24px;
    }
} 

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #0066ff;
    --primary-dark: #0066ff;
    --primary-light: #0066ff;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(252, 128, 21, 0.15);
  }
  
  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: var(--primary-color);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    transform: rotate(15deg);
    animation: glow 8s ease-in-out infinite alternate;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(1deg);
    }
  }
  
  @keyframes glow {
      0% {
          opacity: 0.3;
          transform: rotate(15deg) scale(1);
      }
      100% {
          opacity: 0.6;
          transform: rotate(15deg) scale(1.1);
      }
  }
  
  @keyframes pulse {
      0%, 100% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.05);
      }
  }
  
  @keyframes slideInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
      animation: slideInUp 1s ease-out;
  }
  
  .hero-content h2 {
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1.5rem;
      opacity: 0.9;
      animation: slideInUp 1s ease-out 0.2s both;
  }
  
  .hero-content p {
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 2rem;
      opacity: 0.8;
      animation: slideInUp 1s ease-out 0.4s both;
  }
  
  .hero-buttons {
      display: flex;
      gap: 1rem;
      animation: slideInUp 1s ease-out 0.6s both;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-primary {
    background: var(--white);
    color: var(--primary-color);
  }
  
  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      animation: pulse 0.6s ease-in-out;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
  }
  
  /* Phone Mockup */
  .phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .phone-screen {
    width: 500px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    position: relative;
  }
  .app-content img {
    width: 100%;
    border-radius: 20px;
  }
  .app-interface {
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .app-header h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .loan-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .loan-info {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* Section Headers */
  .section-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
  }
  
  .section-header::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
      border-radius: 2px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Features Section */
  .features {
      padding: 6rem 0;
      background: var(--light-gray);
      position: relative;
      overflow: hidden;
  }
  
  .features::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle, rgba(252, 128, 21, 0.05) 0%, transparent 70%);
      transform: rotate(15deg);
      animation: float 15s ease-in-out infinite reverse;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }
  
  .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(252, 128, 21, 0.1), transparent);
      transition: left 0.5s ease;
  }
  
  .feature-card:hover::before {
      left: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .feature-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          var(--primary-light) 100%
      );
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 10px 30px rgba(252, 128, 21, 0.3);
  }
  
  .feature-icon i {
    font-size: 2rem;
    color: var(--white);
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .feature-card p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Products Section */
  .products {
    padding: 6rem 0;
  }
  
  .product-cards {
    display: flex;
    justify-content: center;
  }
  
  .product-card {
      background: var(--white);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: var(--shadow);
      max-width: 500px;
      width: 100%;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
  }
  
  .product-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 50px 50px 0;
      border-color: transparent var(--primary-color) transparent transparent;
      opacity: 0.1;
      transition: all 0.3s ease;
  }
  
  .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }
  
  .product-card:hover::after {
      opacity: 0.2;
      transform: scale(1.1);
  }
  
  .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
  }
  
  .product-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .interest-rate {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .product-details {
    margin-bottom: 2rem;
  }
  
  .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .detail-item:last-child {
    border-bottom: none;
  }
  
  .label {
    font-weight: 500;
    color: var(--text-dark);
  }
  
  .value {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .example-calculation {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .example-calculation h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
  }
  
  .example-calculation ul {
    list-style: none;
  }
  
  .example-calculation li {
    padding: 0.5rem 0;
    color: var(--text-light);
  }
  
  .example-calculation li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
  }
  
  /* How It Works Section */
  .how-it-works {
      padding: 6rem 0;
      background: var(--light-gray);
      position: relative;
      overflow: hidden;
  }
  
  .how-it-works::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle, rgba(252, 128, 21, 0.05) 0%, transparent 70%);
      transform: rotate(-15deg);
      animation: float 18s ease-in-out infinite;
  }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .step {
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
  }
  
  .step:hover {
      transform: translateY(-10px);
  }
  
  .step::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(252, 128, 21, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: -1;
  }
  
  .step:hover::before {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.2);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
  }
  
  .step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .step p {
    color: var(--text-light);
  }
  
  /* Requirements Section */
  .requirements {
    padding: 6rem 0;
  }
  
  .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .requirement-item {
    text-align: center;
    padding: 2rem;
  }
  
  .requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .requirement-icon i {
    font-size: 2rem;
    color: var(--white);
  }
  
  .requirement-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .requirement-item p {
    color: var(--text-light);
  }
  
  /* About Section */
  .about {
    padding: 6rem 0;
    background: var(--light-gray);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  
  .partner-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .partner-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }
  
  .partner-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .partner-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
  }
  
  .partner-details a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
  }
  
  .disclaimer p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
  }
  
  .contact-content {
    display: flex;
    justify-content: center;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    width: 100%;
  }
  
  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 2rem;
      background: var(--white);
      border-radius: 20px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }
  
  .contact-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-color);
      transform: scaleY(0);
      transition: transform 0.3s ease;
  }
  
  .contact-item:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-hover);
  }
  
  .contact-item:hover::before {
      transform: scaleY(1);
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
  }
  
  .contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .contact-details p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  /* Footer */
  .footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  .footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--primary-color);
  }
  
  .download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
  }
  
  .footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content h2 {
      font-size: 1.2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .phone-screen {
      width: 250px;
      height: 400px;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-info {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .feature-card,
    .product-card {
      padding: 1.5rem;
    }
  
    .step {
      margin-bottom: 2rem;
    }
  }
  