 :root {
      --primary-color: #D74700;
      --secondary-color: #000000;
      --text-color: #252b42;
      --text-color-light: #737373;
      --background-light: #ffffff;
      --background-light-alt: #e9fffa;
      --accent-color: #ec5c2e;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

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

    body {
      font-family: 'Cabin', sans-serif;
      color: var(--text-color);
      background-color: var(--background-light);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.5px;
      margin-bottom: 1.2rem;
    }

    p {
      font-size: 1.1rem;
      color: var(--text-color-light);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      font-family: 'Montserrat', sans-serif;
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: var(--background-light);
      border-radius: 25px;
      padding: 12px 32px;
      box-shadow: 0 10px 20px rgba(35, 133, 109, 0.2);
    }

    .btn-primary:hover {
      background-color: #000000;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(35, 133, 109, 0.3);
    }

    .btn-dark {
      background-color: var(--text-color);
      color: var(--background-light);
      padding: 14px 36px;
    }

    .btn-dark:hover {
      background-color: #3a4262;
      transform: translateY(-3px);
    }

    /* Animation Keyframes */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes dropIn {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }

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

    .animate-fadeIn {
      animation: fadeIn 0.8s ease-out forwards;
      opacity: 0;
    }

    .animate-dropIn {
      animation: dropIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      opacity: 0;
    }

    .animate-float {
      animation: float 4s ease-in-out infinite;
    }

    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--text-color-light);
    }

    /* Header Styles */
    .site-header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      background-color: var(--background-light);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      padding: 20px 0;
      transition: var(--transition);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 24px;
    }

    .brand-name {
      color: var(--text-color);
      font-family: 'Cabin', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .main-nav ul {
      display: flex;
      gap: 35px;
    }

    .main-nav a {
      color: var(--text-color-light);
      font-weight: 600;
      font-size: 1.05rem;
      transition: var(--transition);
      position: relative;
    }

    .main-nav a:hover {
      color: var(--text-color);
    }

    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: var(--transition);
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-color);
      z-index: 1001;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
      transition: right 0.4s ease;
      padding: 80px 30px 30px;
      display: flex;
      flex-direction: column;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-nav a {
      display: block;
      padding: 12px 0;
      font-size: 1.2rem;
      font-weight: 600;
      border-bottom: 1px solid #eee;
    }

    .mobile-nav .btn {
      margin-top: 20px;
      width: 100%;
    }

    .mobile-nav-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .overlay.active {
      display: block;
    }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #e6f7f2 0%, #d1f0e8 100%);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z" fill="%23ffffff" opacity="0.2"/></svg>');
      background-size: cover;
      background-position: bottom;
      z-index: 0;
    }

    .hero-container {
      display: flex;
      align-items: center;
      gap: 50px;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      flex: 1;
      color: var(--text-color);
    }

    .hero-content h1 {
      font-family: 'Cabin', sans-serif;
      font-weight: 800;
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .hero-content p {
      font-family: 'Cabin', sans-serif;
      font-size: 1.25rem;
      color: var(--text-color-light);
      margin-bottom: 2.5rem;
      max-width: 500px;
    }

    .app-buttons {
      display: flex;
      gap: 20px;
      margin-top: 2rem;
    }

    .store-button {
      display: flex;
      align-items: center;
      gap: 15px;
      background-color: var(--text-color);
      color: var(--background-light);
      padding: 18px 28px;
      border-radius: 12px;
      transition: var(--transition);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .store-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    }

    .store-button div {
      display: flex;
      flex-direction: column;
    }

    .store-button span {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
    }

    .store-button strong {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 700;
    }

    .hero-visual {
      flex: 1;
      position: relative;
      min-height: 500px;
      display: flex;
      justify-content: center;
    }

    .phone-mockup-hero {
      position: relative;
      width: 320px;
      height: 550px;
      background: linear-gradient(145deg, #f0f0f0, #ffffff);
      border-radius: 40px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      z-index: 2;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      background: linear-gradient(45deg, #2c3e50, #4a6491);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
      padding: 20px;
    }

    .hero-badge {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 20px;
      border-radius: 12px;
      color: white;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      z-index: 3;
      transition: var(--transition);
    }

    .hero-badge:hover {
      transform: scale(1.05);
    }

    .hero-badge-1 {
      background-color: var(--primary-color);
      top: 20%;
      left: -10%;
      animation-delay: 0.5s;
    }

    .hero-badge-2 {
      background-color: var(--secondary-color);
      bottom: 25%;
      right: -10%;
      animation-delay: 0.8s;
    }

    .hero-avatar {
      position: absolute;
      bottom: 5%;
      right: 10%;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      transition: var(--transition);
      z-index: 3;
    }

    .hero-avatar:hover {
      transform: scale(1.1);
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 50px;
    }

    .features-col-left, .features-col-right {
      display: flex;
      flex-direction: column;
      gap: 70px;
    }

    .features-col-left .feature-item {
      align-items: flex-end;
      text-align: right;
    }

    .features-col-right .feature-item {
      align-items: flex-start;
      text-align: left;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      gap: 15px;
      transition: var(--transition);
    }

    .feature-item:hover {
      transform: translateY(-10px);
    }

    .feature-number-badge {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }

    .badge-light {
      background-color: var(--background-light-alt);
      color: var(--primary-color);
    }

    .badge-dark {
      background-color: var(--primary-color);
      color: var(--background-light);
    }

    .feature-item h3 {
      font-size: 1.5rem;
      margin-top: 15px;
      color: var(--text-color);
    }

    .feature-item p {
      font-size: 1.1rem;
      max-width: 300px;
    }

    .features-col-center {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .phone-bg-circle {
      position: absolute;
      width: 380px;
      height: 380px;
      background-color: var(--primary-color);
      border-radius: 50%;
      opacity: 0.1;
      z-index: -1;
    }

    .phone-mockup-features {
      width: 280px;
      height: auto;
      border-radius: 40px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }

    /* Ready to Ride Section */
    .ready-grid {
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .ready-visual {
      flex: 1;
      position: relative;
      min-height: 500px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .ready-bg-circle {
      position: absolute;
      width: 480px;
      height: 480px;
      background-color: var(--primary-color);
      border-radius: 50%;
      opacity: 0.1;
      z-index: -1;
    }

    .phone-mockup-ready {
      position: absolute;
      background: linear-gradient(145deg, #f0f0f0, #ffffff);
      border-radius: 40px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      overflow: hidden;
    }

    .phone-1 {
      width: 280px;
      height: 350px;
      top: 15%;
      left: 10%;
      transform: rotate(-15deg);
    }

    .phone-2 {
      width: 330px;
      height: 420px;
      top: 5%;
      left: 40%;
      transform: rotate(12deg);
    }

    .ready-features-list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .ready-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 25px;
      padding: 25px;
      border-radius: 16px;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }

    .ready-feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-icon-box {
      background-color: var(--background-light-alt);
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .ready-feature-item:hover .feature-icon-box {
      background-color: var(--primary-color);
      transform: rotate(10deg);
    }

    .ready-feature-item h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--text-color);
    }

    .ready-feature-item p {
      font-size: 1.1rem;
    }

    /* Testimonials Section */
    .testimonials-section {
      background-color: #f9fbfa;
    }

    .testimonials-container {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .testimonials-info {
      flex-basis: 35%;
    }

    .testimonials-info h2 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
    }

    .testimonials-info p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .testimonial-nav {
      display: flex;
      gap: 15px;
    }

    .nav-arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: var(--transition);
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-arrow.prev {
      background-color: var(--background-light-alt);
    }

    .nav-arrow.next {
      background-color: var(--primary-color);
    }

    .nav-arrow:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonials-slider {
      flex: 1;
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 10px;
      scrollbar-width: none;
    }

    .testimonials-slider::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      flex: 0 0 350px;
      background-color: var(--background-light);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
      display: flex;
      flex-direction: column;
      gap: 25px;
      transition: var(--transition);
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .quote-icon {
      width: 50px;
      height: auto;
      opacity: 0.7;
    }

    .testimonial-card blockquote {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-color);
      margin: 0;
      font-style: italic;
    }

    .rating-stars {
      display: flex;
      gap: 5px;
    }

    .testimonial-card hr {
      border: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent-color), transparent);
      margin: 10px 0;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .profile img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid var(--primary-color);
    }

    .profile-info h4 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .profile-info span {
      font-size: 1rem;
      color: var(--text-color-light);
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    }

    .contact-container {
      display: flex;
      gap: 50px;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: var(--text-color);
    }

    .contact-info p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--background-light-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon i {
      color: var(--primary-color);
      font-size: 20px;
    }

    .contact-text h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: var(--text-color);
    }

    .contact-text p {
      font-size: 1.1rem;
      margin: 0;
    }

    .contact-form {
      flex: 1;
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--text-color);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-family: 'Cabin', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--primary-color);
      outline: none;
      box-shadow: 0 0 0 3px rgba(35, 133, 109, 0.1);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    /* Newsletter Section */
    .newsletter-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
    }

    .newsletter-container {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .newsletter-content {
      flex: 1;
    }

    .newsletter-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .newsletter-content p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 30px;
      max-width: 500px;
    }

    .newsletter-form {
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(10px);
    }

    .newsletter-form .form-group {
      position: relative;
    }

    .newsletter-form input {
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
    }

    .newsletter-form .btn {
      position: absolute;
      top: 5px;
      right: 5px;
      padding: 10px 25px;
      border-radius: 50px;
      background: var(--text-color);
      color: white;
    }

    .newsletter-form .btn:hover {
      background: #3a4262;
    }

    /* CTA Section */
    .cta-box {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 30px;
      padding: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      overflow: hidden;
      position: relative;
      box-shadow: 0 20px 50px rgba(35, 133, 109, 0.3);
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
      z-index: 1;
    }

    .cta-content {
      flex-basis: 45%;
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
    }

    .cta-content p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 35px;
    }

    .app-download-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .app-download-section p {
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0;
    }

    .cta-visual {
      flex-basis: 50%;
      position: relative;
      min-height: 330px;
      z-index: 2;
    }

    .phone-mockup-cta {
      position: absolute;
      background: linear-gradient(145deg, #f0f0f0, #ffffff);
      border-radius: 30px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 12px;
      overflow: hidden;
    }

    .phone-cta-1 {
      width: 250px;
      height: 360px;
      bottom: -50px;
      right: 120px;
      z-index: 1;
    }

    .phone-cta-2 {
      width: 250px;
      height: 360px;
      top: -50px;
      right: 0;
    }

    /* Footer */
    .site-footer {
      font-family: 'Montserrat', sans-serif;
      background-color: #f8f9fa;
    }

    .footer-main {
      padding: 100px 0 60px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-col h3 {
      font-size: 1.8rem;
      margin-bottom: 25px;
      color: var(--text-color);
    }

    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      color: var(--text-color);
      position: relative;
      padding-bottom: 10px;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary-color);
      border-radius: 3px;
    }

    .footer-col p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .footer-col ul a {
      font-size: 1.1rem;
      font-weight: 600;
      transition: var(--transition);
      display: inline-block;
    }

    .footer-col ul a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--background-light);
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .social-links a:hover {
      background: var(--primary-color);
      transform: translateY(-5px);
    }

    .social-links img {
      width: 20px;
      height: 20px;
    }

    .footer-bottom {
      background-color: var(--background-light-alt);
      padding: 30px 0;
      text-align: center;
      font-size: 1.1rem;
    }

    .footer-bottom p {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-color-light);
      margin: 0;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .hero-content h1 {
        font-size: 3rem;
      }
      
      .section {
        padding: 80px 0;
      }
      
      .cta-box {
        padding: 60px;
      }
    }

    @media (max-width: 992px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-content p {
        margin: 0 auto 2.5rem;
      }
      
      .app-buttons {
        justify-content: center;
      }
      
      .hero-visual {
        width: 100%;
        margin-top: 40px;
        min-height: 400px;
      }
      
      .phone-mockup-hero {
        width: 280px;
      }
      
      .hero-badge-1, .hero-badge-2, .hero-avatar {
        display: none;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
      }
      
      .features-col-left, .features-col-right {
        grid-row: 2;
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
      }
      
      .features-col-center {
        grid-row: 1;
        margin-bottom: 50px;
      }
      
      .features-col-left .feature-item, .features-col-right .feature-item {
        align-items: center;
        text-align: center;
      }
      
      .ready-grid {
        flex-direction: column;
      }
      
      .ready-visual {
        width: 100%;
        min-height: 400px;
        margin-bottom: 40px;
      }
      
      .testimonials-container {
        flex-direction: column;
        text-align: center;
      }
      
      .testimonial-nav {
        justify-content: center;
      }
      
      .contact-container {
        flex-direction: column;
      }
      
      .newsletter-container {
        flex-direction: column;
      }
      
      .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px;
      }
      
      .cta-content {
        margin-bottom: 40px;
      }
      
      .app-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .section-header h2 {
        font-size: 2.3rem;
      }
      
      .features-col-left, .features-col-right {
        flex-direction: column;
        align-items: center;
      }
      
      .testimonials-slider {
        flex-direction: column;
        align-items: center;
      }
      
      .testimonial-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
      }
      
      .app-buttons {
        flex-direction: column;
      }
      
      .cta-visual {
        min-height: 250px;
      }
      
      .phone-cta-1, .phone-cta-2 {
        width: 180px;
        height: auto;
      }
      
      .footer-grid {
        text-align: center;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-header h2 {
        font-size: 2rem;
      }
      
      .cta-box {
        padding: 40px 20px;
      }
      
      .cta-content h2 {
        font-size: 2rem;
      }
      
      .contact-form {
        padding: 25px;
      }
      
      .newsletter-form {
        padding: 25px;
      }
    }