@charset "utf-8";
/* IGD Studio – Light / Mobile-first / No horizontal overflow */

/* IGD Studio – Light / Mobile-first / Tight Spacing */

    :root {
      /* Palette */
      --bg-body: #ffffff;
      --bg-subtle: #f8fafc;
      --text-main: #0f172a;
      --text-muted: #475569;
      --primary: #0d9488;
      --accent: #2dd4bf;
      --deep: #111827;
      --glass: rgba(255, 255, 255, 0.75);
      --glass-border: rgba(255, 255, 255, 0.6);
      --line: rgba(148, 163, 184, 0.15);
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
      --radius: 16px;
      --container: 1000px;
      --topbar-h: 64px;

      /* ================================================== */
      /* --- Spacing Control (הגדרות רווחים קטנים) --- */
      /* ================================================== */
      
      /* רווח אנכי בין סקשן לסקשן */
      --section-padding: 20px; 

      /* רווח פנימי בתוך הגריד (בין כרטיסיה לכרטיסיה) */
      --grid-gap: 10px;

      /* רווח בין הכותרת של הסקשן לתוכן שלו */
      --header-margin: 10px;

      /* רווח פנימי בתוך הכרטיסיות עצמן */
      --card-padding: 20px;
      
      /* גובה איזור ה-HERO (החלק העליון) */
      --hero-padding-top: 80px;
      --hero-padding-bottom: 50px;
    }

    /* Reset & Base */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Assistant', sans-serif;
      color: var(--text-main);
      background-color: var(--bg-body);
      background-image: 
        radial-gradient(circle at 10% 10%, rgba(45, 212, 191, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(13, 148, 136, 0.03) 0%, transparent 40%);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--topbar-h);
      padding-bottom: 70px;
    }

    a { text-decoration: none; color: inherit; transition: 0.2s; }
    ul { list-style: none; }

    /* Utilities */
    .container { width: min(var(--container), 92%); margin: 0 auto; }
    .text-gradient {
      background: linear-gradient(135deg, var(--deep) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .badge {
      display: inline-block; padding: 4px 12px; background: rgba(13, 148, 136, 0.08); color: var(--primary); border-radius: 99px; font-size: 0.8rem; font-weight: 700; margin-bottom: 12px;
    }

    /* Animations */
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* Top Bar */
    .topbar {
      position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); z-index: 1000; display: flex; align-items: center;
    }
    .topbar-inner { display: flex; justify-content: space-between; align-items: center; }
    .brand { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
    .brand span { color: var(--primary); }
    .nav-desktop { display: flex; gap: 24px; }
    .nav-link { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); position: relative; }
    .nav-link:hover { color: var(--primary); }
    .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: 0.3s; }
    .nav-link:hover::after { width: 100%; }
    .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-main); }

    /* Hero */
    .hero { padding-top: var(--hero-padding-top); padding-bottom: var(--hero-padding-bottom); text-align: center; max-width: 800px; margin: 0 auto; }
    .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; }
    .hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; margin: 0 auto 32px; }
    .hero-btns { display: flex; gap: 12px; justify-content: center; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 99px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; }
    .btn-primary { background: var(--text-main); color: white; box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25); }
    .btn-outline { background: white; border: 1px solid var(--line); color: var(--text-main); }
    .btn-outline:hover { background: var(--bg-subtle); border-color: var(--text-muted); }

    /* Trust Bar */
    .trust-bar {
      padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fafafa;
    }
    .trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
    .trust-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .trust-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
    .trust-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

    /* Sections */
    section { padding: var(--section-padding) 0; }
    .sec-header { text-align: center; margin-bottom: var(--header-margin); max-width: 700px; margin-inline: auto; }
    .sec-header h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
    .sec-header p { color: var(--text-muted); }

    /* Grid & Cards */
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--grid-gap); }
    .card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--card-padding); transition: 0.3s; position: relative; overflow: hidden; }
    .card:hover { border-color: rgba(13, 148, 136, 0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .card-icon { width: 42px; height: 42px; background: rgba(13, 148, 136, 0.08); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 15px; }
    .card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
    .card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

    /* AI Example Box */
    .ai-example-box {
      background: var(--deep); color: white; border-radius: var(--radius); padding: var(--card-padding);
      display: flex; gap: 20px; align-items: center; margin-top: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .ai-left { flex: 1; }
    .ai-right { flex: 1; background: rgba(255,255,255,0.1); padding: 15px; border-radius: 10px; font-size: 0.85rem; }
    .ai-tag { background: var(--accent); color: var(--deep); padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 0.7rem; margin-right: 5px; }

    /* Comparison */
    .comparison-wrapper { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
    .comp-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
    .comp-col { padding: 20px; }
    .comp-col.negative { background: #fff1f2; color: #9f1239; border-left: 1px solid var(--line); }
    .comp-col.positive { background: #f0fdfa; color: #115e59; }
    .comp-title { font-weight: 800; margin-bottom: 10px; display: block; font-size: 1rem; }
    .check-item { display: flex; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; font-weight: 600; }
    .check-item i { margin-top: 3px; }

    /* Ownership Box */
    .ownership-box { background: linear-gradient(135deg, #fcfcfc 0%, #f0fdfa 100%); border: 1px solid rgba(13, 148, 136, 0.2); border-radius: var(--radius); padding: var(--card-padding); display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 20px -5px rgba(13, 148, 136, 0.08); position: relative; overflow: hidden; }
    .ownership-box::before { content:''; position: absolute; right: -20px; top: -20px; width: 100px; height: 100px; background: var(--primary); opacity: 0.05; border-radius: 50%; }
    .o-icon { min-width: 50px; height: 50px; background: white; color: var(--primary); border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: relative; }
    .o-icon .key-badge { position: absolute; bottom: -5px; right: -5px; background: var(--deep); color: white; font-size: 0.6rem; padding: 3px; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
    .o-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; color: var(--text-main); }
    .o-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

    /* Portfolio */
    .p-image { background: var(--bg-subtle); border-radius: var(--radius); height: 180px; overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--line); }
    .p-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
    .card:hover .p-image img { transform: scale(1.05); }
    .p-link { font-size: 0.8rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 5px; margin-top: 8px; }

    /* Contact Closer */
    .contact-closer {
      text-align: center; margin-bottom: 30px; padding: 25px;
      background: #f8fafc; border-radius: var(--radius);
      border-right: 4px solid var(--primary);
    }
    .contact-closer h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--deep); }
    .contact-closer p { font-size: 1rem; color: var(--text-muted); }

    .phone-link {
      font-size: 0.85rem; font-weight: 700; color: var(--text-main);
      display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px;
      border-radius: 99px; border: 1px solid var(--line); background: white;
      box-shadow: 0 4px 10px rgba(0,0,0,0.04); transition: 0.2s;
    }
    .phone-link:hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 6px 14px rgba(13,148,136,0.15); }

    /* Form */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 600px; margin: 0 auto; }
    .full-width { grid-column: 1 / -1; }
    input, textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: white; font-family: inherit; font-size: 0.9rem; transition: 0.3s; }
    input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); }
    textarea { min-height: 100px; resize: vertical; }

    /* Footer & Bottom Bar */
    footer { border-top: 1px solid var(--line); padding: 20px 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); background: white; }
    .bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 10px 0; z-index: 1001; box-shadow: 0 -5px 20px rgba(0,0,0,0.03); }
    .bottom-inner { display: flex; justify-content: space-between; align-items: center; }
    .wa-btn { background: #25D366; color: white; padding: 6px 14px; border-radius: 99px; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); }
    .bottom-nav a { font-size: 0.8rem; font-weight: 600; margin-left: 12px; color: var(--text-main); }
    
    /* FAQ */
    details { background: white; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; transition: 0.3s; }
    details[open] { border-color: var(--primary); background: #fcfcfc; }
    summary { padding: 14px 18px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; font-size: 0.95rem; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: '+'; font-size: 1.1rem; color: var(--text-muted); }
    details[open] summary::after { content: '−'; color: var(--primary); }
    .ans { padding: 0 18px 18px; color: var(--text-muted); font-size: 0.9rem; }

    /* Drawer */
    .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(3px); }
    .drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: white; z-index: 2001; transform: translateX(100%); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 30px; display: flex; flex-direction: column; gap: 20px; box-shadow: -10px 0 30px rgba(0,0,0,0.05); }
    .drawer-active .drawer-overlay { opacity: 1; pointer-events: auto; }
    .drawer-active .drawer { transform: translateX(0); }
    .drawer a { font-size: 1.1rem; font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 15px; }
    .close-drawer { align-self: flex-end; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }

    /* Responsive */
    @media (max-width: 768px) {
      /* Even tighter on mobile if needed */
      :root { 
        --section-padding: 30px; 
        --grid-gap: 12px; 
        --header-margin: 20px; 
        --hero-padding-top: 60px; 
        --hero-padding-bottom: 30px; 
      }
      .nav-desktop { display: none; }
      .hamburger { display: block; }
      .comp-row { grid-template-columns: 1fr; }
      .comp-col.negative { border-left: none; border-bottom: 1px solid var(--line); }
      .form-grid { grid-template-columns: 1fr; }
      .ownership-box { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
      .ai-example-box { flex-direction: column; text-align: center; padding: 20px; }
      .trust-grid { gap: 15px; }
      .contact-closer h3 { font-size: 1.2rem; }
    }