/* ===== index.html ===== */

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

    body {
      font-family: 'Vazirmatn', sans-serif;
      background: #faf6f2;
      color: #2d1b12;
      line-height: 1.6;
      overflow-x: hidden;
      padding: 0.5rem;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 0.8rem;
      position: relative;
    }

    :root {
      --primary: #e65c7b;
      --primary-dark: #c94462;
      --primary-light: #ffe3eb;
      --gold: #d4a373;
      --gold-light: #faf0e6;
      --brown: #2d1b12;
      --shadow-soft: 0 8px 24px -8px rgba(90, 50, 30, 0.10);
      --shadow-hover: 0 16px 40px -12px rgba(90, 50, 30, 0.2);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.8rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 200px;
    }

    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
      opacity: 0;
      transition: 0.3s;
    }

    .btn:hover::after {
      opacity: 1;
    }

    .btn-primary {
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      color: #fff;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px -8px rgba(230, 92, 123, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
    }

    .btn-gold {
      background: linear-gradient(145deg, var(--gold), #bf8f5a);
      color: #2d1b12;
    }
    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px -8px rgba(212, 163, 115, 0.4);
    }

    .btn-sm {
      padding: 0.35rem 0.8rem;
      font-size: 0.7rem;
      max-width: 120px;
    }

    .btn-lg {
      padding: 0.7rem 1.4rem;
      font-size: 0.9rem;
      max-width: 260px;
    }

    /* ===== HEADER ===== */
    .header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      padding: 0.5rem 0.8rem;
      margin: 0.2rem 0 0.6rem;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
      border-radius: 40px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      position: sticky;
      top: 0.5rem;
      z-index: 999;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .logo-img{height:42px;width:auto;border-radius:10px;object-fit:cover;}
.logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
      box-shadow: 0 4px 12px -4px rgba(230, 92, 123, 0.3);
      flex-shrink: 0;
      position: relative;
    }

    .logo-icon::after {
      content: '🌸';
      position: absolute;
      top: -6px;
      right: -6px;
      font-size: 0.7rem;
      opacity: 0.6;
      transform: rotate(10deg);
    }

    .logo-text {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--brown);
      letter-spacing: -0.3px;
      line-height: 1.2;
    }
    .logo-text span {
      color: var(--primary);
    }

    .header-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.3rem;
    }

    .header-actions .btn {
      max-width: none;
      width: auto;
    }

    /* ===== بخش زیر هدر ===== */
    .hero-header {
      text-align: center;
      margin: 0.6rem 0 0.8rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: var(--primary-light);
      color: var(--primary);
      font-weight: 700;
      font-size: 0.7rem;
      padding: 0.25rem 1.2rem;
      border-radius: 40px;
      border: 1px solid rgba(230, 92, 123, 0.15);
      margin-bottom: 0.8rem;
      box-shadow: 0 4px 12px rgba(230, 92, 123, 0.06);
    }
    .hero-badge .divider {
      margin: 0 0.2rem;
      color: #ccc;
    }

    .hero-header h1 {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 0.6rem;
    }
    .hero-header h1 .highlight {
      color: var(--primary);
      position: relative;
    }
    .hero-header h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 10px;
      background: rgba(230, 92, 123, 0.12);
      border-radius: 30px;
      z-index: -1;
    }
    .hero-header h1 .emoji-float {
      display: inline-block;
      animation: float 3.5s ease-in-out infinite;
    }

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

    .hero-desc {
      font-size: 0.9rem;
      color: #5f4a3c;
      max-width: 100%;
      line-height: 1.7;
      margin: 0 auto 0.6rem;
    }

    /* ===== HERO ===== */
    .hero {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 1.5rem;
      padding: 0.5rem 0 1.5rem;
      position: relative;
    }

    .hero::before {
      content: '🌸🌺🌷🌹🌻🌼';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.4rem;
      letter-spacing: 1.2rem;
      opacity: 0.04;
      pointer-events: none;
    }

    /* ===== بخش چپ (ویندوز) ===== */
    .hero-left {
      flex: 1 1 50%;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .hero-left-box {
      display: none;
      flex-direction: column;
      gap: 1rem;
    }

    .hero-left-box .info-item {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(212, 163, 115, 0.1);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.3s ease;
    }
    .hero-left-box .info-item:hover {
      transform: translateX(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(230, 92, 123, 0.15);
    }

    .hero-left-box .info-item .info-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--primary);
      flex-shrink: 0;
    }

    .hero-left-box .info-item .info-text {
      flex: 1;
    }
    .hero-left-box .info-item .info-text h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 0.05rem;
    }
    .hero-left-box .info-item .info-text p {
      font-size: 0.75rem;
      color: #7a6456;
      line-height: 1.4;
    }

    .hero-left-box .info-item .info-emoji {
      font-size: 1.6rem;
      opacity: 0.12;
      margin-right: auto;
    }

    /* ===== آمارها در سمت چپ (زیر باکس‌ها) ===== */
    .hero-stats-left {
      display: none;
      justify-content: flex-start;
      gap: 2rem;
      padding: 1rem 0.5rem;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      border: 1px solid rgba(212, 163, 115, 0.08);
      flex-wrap: wrap;
    }

    .hero-stats-left .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-stats-left .stat strong {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--brown);
    }
    .hero-stats-left .stat span {
      font-size: 0.7rem;
      color: #7a6456;
    }
    .hero-stats-left .stat .stat-flower {
      font-size: 0.6rem;
    }

    /* ===== کارت ضربان‌دار ===== */
    .hero-image {
      flex: 1 1 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 100%;
    }

    .floating-card {
      background: linear-gradient(145deg, #ffffff, #fcf6f0);
      backdrop-filter: blur(16px);
      padding: 1.8rem 1.5rem;
      border-radius: 32px 32px 32px 12px;
      box-shadow: 0 8px 32px -8px rgba(90, 50, 30, 0.12);
      border: 2px solid rgba(230, 92, 123, 0.15);
      transform: rotate(-1deg);
      transition: 0.4s;
      position: relative;
      width: 100%;
      max-width: 340px;
      overflow: visible;
      animation: card-pulse 2.2s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes card-pulse {
      0%, 100% {
        transform: rotate(-1deg) scale(1);
        box-shadow: 0 8px 32px -8px rgba(90, 50, 30, 0.12);
        border-color: rgba(230, 92, 123, 0.15);
      }
      50% {
        transform: rotate(-1deg) scale(1.025);
        box-shadow: 0 12px 48px -8px rgba(230, 92, 123, 0.25);
        border-color: rgba(230, 92, 123, 0.45);
      }
    }

    .floating-card .ring {
      position: absolute;
      border-radius: 36px 36px 36px 16px;
      border: 2px solid rgba(230, 92, 123, 0.12);
      pointer-events: none;
      inset: -6px;
      animation: ring-pulse 2.2s ease-in-out infinite;
    }
    .floating-card .ring:nth-child(2) {
      inset: -12px;
      border-color: rgba(230, 92, 123, 0.06);
      animation-delay: 0.3s;
      border-radius: 40px 40px 40px 20px;
    }
    .floating-card .ring:nth-child(3) {
      inset: -18px;
      border-color: rgba(230, 92, 123, 0.03);
      animation-delay: 0.6s;
      border-radius: 44px 44px 44px 24px;
    }

    @keyframes ring-pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.8;
      }
      50% {
        transform: scale(1.06);
        opacity: 0;
      }
    }

    .floating-card .deco-flower {
      position: absolute;
      font-size: 1.6rem;
      opacity: 0.15;
      pointer-events: none;
      animation: float-flower 4s ease-in-out infinite;
    }
    .floating-card .deco-flower.df-1 { top: -10px; right: -8px; font-size: 2rem; opacity: 0.1; animation-delay: 0s; }
    .floating-card .deco-flower.df-2 { bottom: -8px; left: -6px; font-size: 1.8rem; opacity: 0.08; animation-delay: 1s; }
    .floating-card .deco-flower.df-3 { top: 20%; left: -12px; font-size: 1.2rem; opacity: 0.06; animation-delay: 2s; }
    .floating-card .deco-flower.df-4 { bottom: 20%; right: -10px; font-size: 1.4rem; opacity: 0.07; animation-delay: 0.5s; }

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

    .floating-card .heart-beat {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.2rem;
      animation: heart-beat 1.2s ease-in-out infinite;
      color: var(--primary);
      background: rgba(255, 255, 255, 0.9);
      padding: 0.2rem 0.6rem;
      border-radius: 30px;
      box-shadow: 0 2px 12px rgba(230, 92, 123, 0.15);
      backdrop-filter: blur(4px);
      z-index: 5;
      border: 1px solid rgba(230, 92, 123, 0.1);
    }

    @keyframes heart-beat {
      0%, 100% { transform: translateX(-50%) scale(1); }
      15% { transform: translateX(-50%) scale(1.3); }
      30% { transform: translateX(-50%) scale(1); }
      45% { transform: translateX(-50%) scale(1.2); }
      60% { transform: translateX(-50%) scale(1); }
    }

    .floating-card .card-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }

    .floating-card .card-image {
      width: 100%;
      aspect-ratio: 1/1;
      max-height: 220px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(145deg, #f8efe8, #f0e4db);
      border: 2px solid rgba(255, 255, 255, 0.5);
      box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }
    .floating-card .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .floating-card .card-image .placeholder-flower {
      font-size: 5rem;
      opacity: 0.5;
      animation: float-flower 3s ease-in-out infinite;
      filter: drop-shadow(0 4px 12px rgba(230, 92, 123, 0.1));
    }

    .floating-card .card-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--brown);
      text-align: center;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      padding: 0.3rem 1.2rem;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .floating-card .card-title i {
      color: var(--primary);
      margin-left: 0.3rem;
    }

    .floating-card .card-badge {
      font-size: 0.6rem;
      color: var(--gold);
      background: var(--gold-light);
      padding: 0.15rem 0.8rem;
      border-radius: 30px;
      border: 1px solid rgba(212, 163, 115, 0.15);
      font-weight: 600;
    }

    /* ===== آمارهای موبایل (زیر کارت) ===== */
    .hero-stats-mobile {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      padding-top: 1rem;
      border-top: 2px dashed rgba(212, 163, 115, 0.15);
      flex-wrap: wrap;
      width: 100%;
    }

    .hero-stats-mobile .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-stats-mobile .stat strong {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--brown);
    }
    .hero-stats-mobile .stat span {
      font-size: 0.7rem;
      color: #7a6456;
    }
    .hero-stats-mobile .stat .stat-flower {
      font-size: 0.6rem;
    }

    /* ===== بخش‌های دیگر ===== */
    .section-title {
      text-align: center;
      margin: 2rem 0 1.5rem;
    }
    .section-title h2 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--brown);
    }
    .section-title p {
      color: #7a6456;
      font-size: 0.9rem;
      max-width: 100%;
      margin: 0.2rem auto 0;
    }
    .section-title .title-flower {
      display: block;
      font-size: 1rem;
      letter-spacing: 0.6rem;
      opacity: 0.12;
      margin-top: 0.2rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 1rem 0 1.5rem;
    }

    .feature-card {
      background: #fff;
      padding: 1.5rem 1rem;
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
      text-align: center;
      transition: all 0.35s ease;
      border: 1px solid rgba(255, 255, 255, 0.5);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '🌸';
      position: absolute;
      top: -6px;
      right: -4px;
      font-size: 2.2rem;
      opacity: 0.04;
      transform: rotate(20deg);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .feature-card .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 0.4rem;
      position: relative;
    }
    .feature-card .icon .mini-flower {
      font-size: 0.8rem;
      position: absolute;
      top: -8px;
      right: -6px;
      opacity: 0.25;
    }
    .feature-card h4 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }
    .feature-card p {
      color: #6a5547;
      font-size: 0.8rem;
    }

    .service-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 1rem 0 2rem;
    }

    .service-card {
      background: #fff;
      border-radius: 24px;
      padding: 1.5rem 1.2rem;
      box-shadow: var(--shadow-soft);
      border-right: 4px solid var(--gold);
      transition: all 0.3s ease;
      position: relative;
    }

    .service-card::after {
      content: '🌷';
      position: absolute;
      bottom: -4px;
      left: 6px;
      font-size: 2rem;
      opacity: 0.04;
      transform: rotate(-12deg);
    }

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

    .service-card .title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .service-card .title i {
      color: var(--primary);
      font-size: 1.2rem;
    }
    .service-card p {
      color: #5f4a3c;
      margin-bottom: 0.6rem;
      line-height: 1.6;
      font-size: 0.85rem;
    }
    .service-card .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: #7a6456;
      border-top: 1px solid #f0e4db;
      padding-top: 0.6rem;
      margin-top: 0.2rem;
      flex-wrap: wrap;
      gap: 0.2rem;
    }

    .cta {
      background: linear-gradient(145deg, #fcf3eb, #fff8f2);
      border-radius: 32px;
      padding: 1.8rem 1.2rem;
      margin: 2rem 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.2rem;
      border: 1px solid rgba(212, 163, 115, 0.12);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '🌸🌷🌺🌹🌻🌼';
      position: absolute;
      bottom: -8px;
      right: 10px;
      font-size: 2.8rem;
      opacity: 0.03;
      letter-spacing: 0.6rem;
    }

    .cta-content h3 {
      font-size: 1.5rem;
      font-weight: 800;
    }
    .cta-content h3 i {
      color: var(--primary);
      margin-left: 0.3rem;
    }
    .cta-content p {
      color: #5f4a3c;
      max-width: 100%;
      font-size: 0.9rem;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
    }

    .footer {
      border-top: 2px solid rgba(212, 163, 115, 0.06);
      padding: 1.8rem 0 1rem;
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      color: #5f4a3c;
      position: relative;
      text-align: center;
    }

    .footer::before {
      content: '🌸🌷🌺🌹';
      position: absolute;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1rem;
      letter-spacing: 0.6rem;
      opacity: 0.05;
    }

    .footer .col {
      flex: 1 1 auto;
    }
    .footer .col h5 {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      color: var(--brown);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
    }
    .footer .col a {
      display: block;
      margin: 0.2rem 0;
      transition: 0.2s;
      font-size: 0.8rem;
    }
    .footer .col a:hover {
      color: var(--primary);
      transform: translateX(-4px);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.4rem;
    }
    .social-links a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: 0.3s;
      border: 1px solid rgba(230, 92, 123, 0.06);
    }
    .social-links a:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 6px 16px -4px rgba(230, 92, 123, 0.25);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(212, 163, 115, 0.06);
      padding-top: 1rem;
      font-size: 0.75rem;
      color: #8a7567;
      width: 100%;
    }

    /* ======================================== */
    /* ===== RESPONSIVE ===== */
    /* ======================================== */

    @media (min-width: 600px) {
      body { padding: 0.8rem; }
      .container { padding: 0 1.2rem; }

      .header {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.6rem 1.2rem;
        border-radius: 40px;
      }
      .logo { justify-content: flex-start; }
      .logo-text { font-size: 1.3rem; }
      .header-actions { flex-wrap: nowrap; }
      .btn { max-width: none; width: auto; }
      .btn-sm { max-width: none; }

      .hero-header { text-align: right; }
      .hero-header h1 { font-size: 2.4rem; }
      .hero-desc { max-width: 500px; margin: 0 0 0.6rem 0; }

      .hero {
        flex-direction: row;
        text-align: right;
        gap: 2rem;
        padding: 0.5rem 0 1.5rem;
        align-items: flex-start;
      }

      .hero-left {
        flex: 1 1 50%;
        gap: 1.2rem;
      }

      .hero-left-box {
        display: flex;
      }

      .hero-stats-left {
        display: flex;
      }

      .hero-image {
        flex: 1 1 40%;
        align-self: flex-start;
        margin-top: -1rem;
      }

      .hero-stats-mobile {
        display: none;
      }

      .floating-card {
        max-width: 340px;
        padding: 1.8rem 1.5rem;
      }
      .floating-card .card-image {
        max-height: 220px;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
      }

      .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
      }

      .cta {
        flex-direction: row;
        text-align: right;
        padding: 2rem 2rem;
        gap: 1.8rem;
      }
      .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: auto;
      }
      .cta-content p { max-width: 400px; }

      .footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: right;
        gap: 1.2rem;
      }
      .footer .col { flex: 1 1 140px; }
      .footer .col h5 { justify-content: flex-start; }
      .social-links { justify-content: flex-start; }
    }

    @media (min-width: 992px) {
      body { padding: 1rem; }
      .container { padding: 0 2rem; }

      .header {
        padding: 0.6rem 2rem;
        margin: 0.6rem 0 1rem;
        border-radius: 60px;
      }
      .logo-text { font-size: 1.5rem; }
      .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
      }

      .hero-header h1 { font-size: 3.2rem; }
      .hero-desc { font-size: 1.05rem; }

      .hero {
        gap: 3rem;
        align-items: flex-start;
      }
      .hero-image {
        margin-top: -2rem;
      }

      .hero-left {
        gap: 1.5rem;
      }

      .hero-left-box .info-item {
        padding: 1.2rem 1.5rem;
      }
      .hero-left-box .info-item .info-icon {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
      }
      .hero-left-box .info-item .info-text h4 {
        font-size: 1rem;
      }
      .hero-left-box .info-item .info-text p {
        font-size: 0.8rem;
      }

      .hero-stats-left {
        gap: 2.5rem;
        padding: 1rem 1.5rem;
      }
      .hero-stats-left .stat strong {
        font-size: 1.8rem;
      }

      .floating-card {
        padding: 2rem 1.8rem;
        max-width: 380px;
        border-radius: 40px 40px 40px 16px;
      }
      .floating-card .card-image {
        max-height: 260px;
        border-radius: 24px;
      }
      .floating-card .card-image .placeholder-flower {
        font-size: 6rem;
      }
      .floating-card .card-title {
        font-size: 1rem;
        padding: 0.4rem 1.5rem;
      }
      .floating-card .deco-flower.df-1 { font-size: 2.6rem; }
      .floating-card .deco-flower.df-2 { font-size: 2.2rem; }

      .floating-card .ring {
        border-radius: 44px 44px 44px 20px;
      }
      .floating-card .ring:nth-child(2) {
        border-radius: 48px 48px 48px 24px;
      }
      .floating-card .ring:nth-child(3) {
        border-radius: 52px 52px 52px 28px;
      }

      .section-title h2 { font-size: 2.4rem; }
      .section-title p { font-size: 1rem; }

      .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.8rem;
      }

      .service-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
      }

      .cta {
        padding: 2.8rem 3rem;
        border-radius: 50px;
      }
      .cta-content h3 { font-size: 2rem; }

      .footer .col { flex: 1 1 160px; }
    }

    @media (min-width: 1200px) {
      .container { padding: 0 2.5rem; }
      .hero-header h1 { font-size: 3.8rem; }
      .hero-image {
        margin-top: -3rem;
      }
      .floating-card {
        max-width: 400px;
      }
      .floating-card .card-image {
        max-height: 280px;
      }
      .hero-left-box .info-item {
        padding: 1.4rem 1.8rem;
      }
      .hero-stats-left .stat strong {
        font-size: 2rem;
      }
    }

/* ===== دکمه شناور نصب اپلیکیشن ===== */
.install-app-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #f4a261), #e07a3f);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 122, 63, 0.35);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.install-app-float i { font-size: 1.15rem; }
.install-app-float span { font-size: 0.52rem; font-weight: 800; }
.install-app-float:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(224, 122, 63, 0.45); }
