*{margin:0;padding:0;box-sizing:border-box}:root{--primary-orange:#c86440;--primary-orange-secondary:#f18c67;--cook-bg:#fdf5ed;--primary-teal:#2b5e65;--darkblue:#26474e;--thirdblue:#484a74;--white:#ffffff;--light-gray:#f8f9fa;--dark-gray:#2c3e50;--text:#1f2a2e;--text-secondary:#666;--apple:#a2aaad;--shadow:0 10px 30px rgba(0, 0, 0, 0.1);--shadow-teal:0 4px 20px rgba(43, 94, 101, 0.1);--shadow-hover:0 15px 40px rgba(0, 0, 0, 0.15);--transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1)}body{font-family:Lato,sans-serif;line-height:1.6;color:var(--text);background:var(--light-gray);min-height:100vh;overflow-x:hidden}.navbar{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);z-index:1000;padding:1rem 0;box-shadow:var(--shadow);transition:var(--transition)}.navbar.scrolled{padding:.5rem 0;background:rgba(255,255,255,.98)}.nav-container{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;justify-content:space-between;align-items:center}.logo{display:inline-flex;align-items:center;text-decoration:none;transition:var(--transition)}.logo-img{display:block;height:2rem;width:auto;max-height:40px;object-fit:contain;border-radius:10px}.logo:hover{transform:scale(1.05)}.nav-menu{display:flex;align-items:center;gap:2rem;list-style:none}.nav-link{text-decoration:none;color:var(--dark-gray);font-weight:500;transition:var(--transition);position:relative}.nav-link:hover{color:var(--primary-orange)}.nav-link::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--primary-orange);transition:var(--transition)}.nav-link:hover::after{width:100%}.dropdown{position:relative}.dropdown-btn{background:0 0;border:none;color:var(--dark-gray);font-weight:500;cursor:pointer;display:flex;align-items:center;gap:.5rem;transition:var(--transition)}.dropdown-btn:hover{color:var(--primary-orange)}.dropdown-content{position:absolute;top:100%;right:0;background:var(--white);box-shadow:var(--shadow);border-radius:12px;padding:.5rem 0;min-width:120px;opacity:0;visibility:hidden;transform:translateY(-10px);transition:var(--transition)}.dropdown.active .dropdown-content{opacity:1;visibility:visible;transform:translateY(0)}.dropdown-content a{display:block;padding:.75rem 1rem;color:var(--dark-gray);text-decoration:none;transition:var(--transition)}.dropdown-content a:hover{background:var(--light-gray);color:var(--primary-orange)}.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:8rem 2rem 2rem;position:relative;overflow:hidden}.hero-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.hero-content{z-index:2}.hero-title{font-family:Lobster,cursive;font-size:3.5rem;font-weight:400;color:var(--primary-teal);margin-bottom:1.5rem;line-height:1.2;text-decoration:underline;text-decoration-color:var(--primary-teal);text-underline-offset:0.18em;text-decoration-thickness:0.13em}.hero-subtitle{font-family:Lobster,cursive;font-size:1.25rem;font-weight:400;color:var(--text);margin-bottom:3rem;opacity:.9}.hero-description{margin-top:1em;font-size:1.1em;line-height:1.6;color:var(--text-secondary);max-width:600px;margin-left:auto;margin-right:auto}.hero-buttons{display:flex;gap:1.5rem;flex-wrap:wrap;margin-bottom:2rem}.btn{padding:1rem 2rem;border-radius:50px;font-weight:600;text-decoration:none;display:inline-flex;align-items:center;gap:.75rem;transition:var(--transition),transform .18s cubic-bezier(.4,0,.2,1);box-shadow:0 6px 24px rgba(40,60,90,.18),0 1.5px 4px rgba(40,60,90,.1);border:none;cursor:pointer;font-size:1rem}.btn-primary{background:var(--primary-orange);color:#fff;border:none;box-shadow:0 8px 32px rgba(200,100,64,.13);font-weight:600;transition:background .18s cubic-bezier(.4,0,.2,1),color .18s cubic-bezier(.4,0,.2,1),transform .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1);position:relative;z-index:1}.btn-primary:focus-visible,.btn-primary:hover{background:#d9532a;color:#fff;transform:translateY(-2px) scale(1.07) rotate(-1deg);box-shadow:0 12px 36px rgba(200,100,64,.18)}.btn-primary:active{background:#a44d2e;color:#fff;transform:translateY(1px) scale(.97)}.btn-secondary{background:var(--primary-teal);color:#fff;border:none;box-shadow:0 8px 32px rgba(43,94,101,.13);font-weight:600;transition:background .18s cubic-bezier(.4,0,.2,1),color .18s cubic-bezier(.4,0,.2,1),transform .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1);position:relative;z-index:1}.btn-secondary:focus-visible,.btn-secondary:hover{background:var(--darkblue);color:#fff;transform:translateY(-2px) scale(1.07) rotate(1deg);box-shadow:0 12px 36px rgba(43,94,101,.18)}.btn-secondary:active{background:#174046;color:#fff;transform:translateY(1px) scale(.97)}.hero-visual{position:relative;height:400px;display:flex;align-items:center;justify-content:center}.floating-card{position:absolute;background:var(--white);padding:2rem;border-radius:20px;box-shadow:var(--shadow);text-align:center;transition:var(--transition);width:140px}.floating-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}.card-1{animation:6s ease-in-out infinite float1;top:10%;left:5%}.card-2{animation:8s ease-in-out infinite float2;top:35%;right:5%}.card-4{animation:7s ease-in-out infinite float3;top:60%;right:25%}.card-5{animation:9s ease-in-out infinite float4;bottom:35%;left:40%;transform:translateX(-50%)}@keyframes float1{0%,100%{transform:translateY(0) rotate(0)}25%{transform:translateY(-8px) rotate(1deg)}50%{transform:translateY(-4px) rotate(-.5deg)}75%{transform:translateY(-12px) rotate(.5deg)}}@keyframes float2{0%,100%{transform:translateY(0) rotate(0)}30%{transform:translateY(-6px) rotate(-1deg)}60%{transform:translateY(-10px) rotate(1.5deg)}90%{transform:translateY(-3px) rotate(-.5deg)}}@keyframes float3{0%,100%{transform:translateY(0) rotate(0)}20%{transform:translateY(-10px) rotate(.5deg)}40%{transform:translateY(-5px) rotate(-1deg)}70%{transform:translateY(-8px) rotate(1deg)}85%{transform:translateY(-2px) rotate(-.5deg)}}@keyframes float4{0%,100%{transform:translateY(0) rotate(0)}15%{transform:translateY(-7px) rotate(-1.5deg)}35%{transform:translateY(-12px) rotate(1deg)}55%{transform:translateY(-4px) rotate(-.5deg)}80%{transform:translateY(-9px) rotate(.5deg)}}.card-icon{font-size:2.5rem;margin-bottom:1rem}.floating-card h3{font-family:Lobster,cursive;font-size:1rem;font-weight:400;color:var(--primary-teal);word-wrap:break-word;hyphens:auto;line-height:1.2}@media (max-width:600px){.floating-card{width:140px!important;min-height:120px;padding:1rem .8rem;display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:140px;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);border:1px solid rgba(43,94,101,.1);box-shadow:0 8px 32px rgba(43,94,101,.15),0 2px 8px rgba(0,0,0,.1)}.floating-card h3{font-size:.75rem;line-height:1.1;text-align:center;word-break:normal;hyphens:auto;white-space:normal;overflow:visible;max-width:100%;padding:0 .2rem}.card-icon{font-size:2rem;margin-bottom:.6rem;flex-shrink:0}.card-1{top:10%;left:2%}.card-2{top:60%;left:2%}.card-4{top:15%;right:2%}.card-5{top:60%;right:2%}}.home-bandeau{background:linear-gradient(90deg,var(--primary-orange),#e07a52);color:#fff;padding:.6rem 1.5rem;padding-top:calc(.6rem + 60px);text-align:center;box-shadow:0 2px 12px rgba(200,100,64,.25)}.home-bandeau-inner{max-width:900px;margin:0 auto;display:flex;align-items:center;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem}.home-bandeau-icon{margin-right:.5rem;font-size:1.1rem;opacity:.95}.home-bandeau-text{font-size:.95rem;font-weight:600}.home-bandeau-cta{display:inline-block;padding:.4rem 1rem;background:#fff;color:var(--primary-orange);font-weight:700;border-radius:2rem;text-decoration:none;transition:transform .2s,box-shadow .2s}.home-bandeau-cta:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15);color:var(--primary-orange)}.home-hero{position:relative;min-height:420px;display:flex;align-items:center;justify-content:center;padding:5rem 1.5rem 4rem;overflow:hidden}.home-hero-bg{position:absolute;inset:0;z-index:0}.home-hero-img{width:100%;height:100%;object-fit:cover;object-position:center;opacity:.85}.home-hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(43,94,101,.75) 0,rgba(38,71,78,.88) 100%)}.home-hero-inner{position:relative;z-index:1;max-width:960px;margin:0 auto;text-align:center;color:#fff}.home-hero-title{font-family:Lobster,cursive;font-size:clamp(1.85rem, 5vw, 2.75rem);font-weight:400;line-height:1.25;margin-bottom:1rem;text-shadow:0 2px 8px rgba(0,0,0,.3)}.home-hero-subtitle{font-size:1.1rem;opacity:.95;margin-bottom:2rem;line-height:1.5;max-width:36em;margin-left:auto;margin-right:auto}.home-hero-ctas{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}.home-hero-btn{display:inline-flex;align-items:center;justify-content:center;padding:1rem 1.75rem;border-radius:.75rem;font-weight:700;font-size:1.05rem;text-decoration:none;transition:transform .2s,box-shadow .2s;min-height:52px}.home-hero-btn--client{background:#fff;color:var(--primary-teal);border:2px solid var(--primary-orange);box-shadow:0 4px 20px rgba(0,0,0,.25)}.home-hero-btn--client:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,.35);color:var(--darkblue)}.home-hero-btn--cook{background:var(--primary-orange);color:#fff;border:2px solid rgba(255,255,255,.9);box-shadow:0 4px 20px rgba(0,0,0,.2)}.home-hero-btn--cook:hover{transform:translateY(-2px);background:#e07a52;color:#fff;box-shadow:0 6px 24px rgba(0,0,0,.3)}.home-hero-blocks{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;margin-top:2rem;text-align:left}.home-hero-block{flex:1 1 320px;max-width:440px;display:flex;flex-direction:column;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border-radius:1rem;padding:1.75rem;border:1px solid rgba(255,255,255,.2);color:#fff}.home-hero-block-title{font-size:1.2rem;font-weight:700;margin-bottom:1rem;line-height:1.3;text-shadow:0 1px 4px rgba(0,0,0,.2)}.home-hero-block-intro,.home-hero-block-outro,.home-hero-block-platform{font-size:.95rem;line-height:1.55;margin-bottom:1rem;opacity:.95}.home-hero-block-platform{font-weight:600;margin-bottom:.5rem}.home-hero-block-list{list-style:none;margin:0 0 1rem;padding:0}.home-hero-block-list li{position:relative;padding-left:1.25rem;margin-bottom:.5rem;font-size:.95rem;line-height:1.45}.home-hero-block-list li::before{content:"•";position:absolute;left:0;color:var(--primary-orange);font-weight:700}.home-hero-block .home-hero-btn{margin-top:auto;width:100%;max-width:100%;box-sizing:border-box}@media (max-width:768px){.home-hero{min-height:auto;padding:4rem 1rem 3rem}.home-hero-blocks{flex-direction:column;align-items:stretch;margin-top:1.5rem;gap:1.5rem}.home-hero-block{max-width:none;order:0}.home-hero-block--client{order:0}.home-hero-block--cook{order:1}}.home-three-cols{padding:3.5rem 1.5rem;background:#fff}.home-three-inner{max-width:960px;margin:0 auto}.home-three-title{font-family:Lobster,cursive;font-size:clamp(1.5rem, 4vw, 2rem);color:var(--primary-teal);text-align:center;margin-bottom:2rem}.home-three-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin-bottom:2rem}.home-three-card{text-align:center;padding:1.5rem 1rem;border-radius:1rem;background:var(--light-gray);border:1px solid rgba(43,94,101,.08)}.home-three-icon{font-size:2.5rem;display:block;margin-bottom:.75rem;color:var(--primary-teal)}.home-three-icon i{color:inherit}.home-three-card h3{font-size:1.2rem;color:var(--darkblue);margin-bottom:.5rem}.home-three-card p{font-size:.95rem;color:var(--text-secondary);line-height:1.5}.home-three-cta-wrap{text-align:center}.home-three-cta{display:inline-block;padding:.75rem 1.5rem;color:var(--primary-teal);font-weight:600;text-decoration:none;border:2px solid var(--primary-teal);border-radius:.75rem;transition:background .2s,color .2s}.home-three-cta:hover{background:var(--primary-teal);color:#fff}.home-app-preview{margin-top:2.5rem;text-align:center}.home-app-preview-label{font-size:1rem;font-weight:600;color:var(--primary-teal);margin-bottom:1rem}.home-app-preview-row{display:flex;flex-direction:column;align-items:center;gap:1.5rem}.home-app-preview-row .home-app-preview-img{max-width:280px;width:100%}.home-app-preview-img{max-width:280px;width:100%;height:auto;display:block;margin:0 auto;border-radius:.75rem;box-shadow:0 12px 32px rgba(43,94,101,.15)}@media (min-width:640px){.home-app-preview-row{flex-direction:row;justify-content:center;flex-wrap:nowrap;gap:1.25rem}.home-app-preview-row .home-app-preview-img{flex:1 1 0;min-width:0;max-width:220px}}.home-community{padding:3rem 1.5rem;background:var(--light-gray)}.home-community-inner{max-width:800px;margin:0 auto;text-align:center}.home-section-title{font-family:Lobster,cursive;font-size:clamp(1.5rem, 4vw, 2rem);color:var(--primary-teal);margin-bottom:1rem}.home-community-text{font-size:1.05rem;color:var(--text);margin-bottom:1.5rem;line-height:1.5}.home-community-visual{border-radius:1rem;overflow:hidden;box-shadow:0 8px 32px rgba(43,94,101,.12)}.home-community-img{width:100%;max-width:560px;height:auto;display:block;margin-left:auto;margin-right:auto}.home-audience{padding:3rem 1.5rem}.home-audience--client{background:#fff}.home-audience--cook{background:linear-gradient(180deg,var(--cook-bg) 0,#fff 100%)}.home-audience-inner{max-width:640px;margin:0 auto;text-align:center}.home-audience-text{font-size:1.05rem;color:var(--text);margin-bottom:1.5rem;line-height:1.5}.home-audience-list{list-style:none;margin:0 auto 1.5rem;padding:0;text-align:left;max-width:320px}.home-audience-list li{padding:.5rem 0 .5rem 1.5rem;position:relative;font-size:1rem;color:var(--text)}.home-audience-list li::before{content:"✓";position:absolute;left:0;color:var(--primary-teal);font-weight:700}.home-audience-btn{display:inline-block;padding:1rem 1.75rem;border-radius:.75rem;font-weight:700;font-size:1.05rem;text-decoration:none;transition:transform .2s,box-shadow .2s;background:var(--primary-teal);color:#fff;box-shadow:0 4px 14px rgba(43,94,101,.35)}.home-audience-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(43,94,101,.4);color:#fff}.home-audience-btn--cook{background:var(--primary-orange);box-shadow:0 4px 14px rgba(200,100,64,.35)}.home-audience-btn--cook:hover{box-shadow:0 6px 20px rgba(200,100,64,.4)}.home-why{padding:3rem 1.5rem;background:#fff}.home-why-inner{max-width:920px;margin:0 auto}.home-why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;margin-top:1.5rem}.home-why-card{text-align:center;padding:2rem 1.5rem;background:var(--light-gray);border-radius:1rem;border:1px solid rgba(43,94,101,.08)}.home-why-card h3{font-size:1.25rem;color:var(--primary-teal);margin-bottom:.5rem}.home-why-card p{font-size:.95rem;color:var(--text-secondary);line-height:1.5}.home-cta-final{padding:3.5rem 1.5rem;background:linear-gradient(135deg,var(--primary-teal) 0,var(--darkblue) 100%);color:#fff;text-align:center}.home-cta-final-inner{max-width:640px;margin:0 auto}.home-cta-final-title{font-family:Lobster,cursive;font-size:clamp(1.5rem, 4vw, 2.25rem);font-weight:400;margin-bottom:.75rem;text-shadow:0 1px 2px rgba(0,0,0,.2)}.home-cta-final-sub{font-size:1.05rem;opacity:.95;margin-bottom:1.5rem;line-height:1.5}.home-cta-final-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}.funnel-benefits,.funnel-cta-final,.funnel-hero,.funnel-social-proof,.funnel-video{overflow-x:hidden;box-sizing:border-box}.funnel-benefits-inner,.funnel-cta-final-inner,.funnel-hero-inner,.funnel-social-proof-inner,.funnel-video-inner{box-sizing:border-box}.funnel-hero{padding:6rem 1.5rem 4rem;padding-left:max(1.5rem,env(safe-area-inset-left));padding-right:max(1.5rem,env(safe-area-inset-right));background:var(--primary-teal);color:#fff;text-align:center;position:relative}.funnel-hero-inner{max-width:720px;margin:0 auto}.funnel-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem 1rem;background:rgba(255,255,255,.2);border-radius:2rem;font-size:.85rem;font-weight:600;margin-bottom:1.25rem;max-width:100%;overflow-wrap:break-word}.funnel-badge-icon{display:inline-flex;flex-shrink:0;color:#22c55e}.funnel-badge-icon svg{display:block}.funnel-headline{font-family:Lobster,cursive;font-size:clamp(1.75rem, 5vw, 2.5rem);font-weight:400;line-height:1.28;margin-bottom:1rem;text-shadow:0 1px 2px rgba(0,0,0,.1);overflow-wrap:break-word;word-wrap:break-word;hyphens:auto}.funnel-subheadline{font-size:1.1rem;opacity:.95;margin-bottom:.5rem}.funnel-subheadline-2{font-size:1.05rem;opacity:.9;margin-top:0;margin-bottom:2rem;line-height:1.5;overflow-wrap:break-word;word-wrap:break-word}.funnel-cta-primary{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-bottom:.75rem}.funnel-btn-store{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 1.25rem;border-radius:.75rem;font-weight:600;font-size:1rem;text-decoration:none;color:#fff;transition:transform .2s,box-shadow .2s;box-shadow:0 4px 14px rgba(0,0,0,.2);box-sizing:border-box;min-width:0;max-width:100%}.funnel-btn-store span{white-space:normal;overflow:visible;text-overflow:clip;text-align:center;line-height:1.25}.funnel-btn-store:focus-visible,.funnel-btn-store:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.25)}.funnel-btn-apple{background:#000}.funnel-btn-google{background:#34a853}.funnel-btn-icon{width:28px;height:28px;flex-shrink:0}.funnel-trust{font-size:.9rem;opacity:.9;overflow-wrap:break-word}.funnel-video{padding:3rem 1.5rem;padding-left:max(1.5rem,env(safe-area-inset-left));padding-right:max(1.5rem,env(safe-area-inset-right));background:var(--light-gray)}.funnel-video-inner{max-width:800px;margin:0 auto}.funnel-video-title{font-family:Lobster,cursive;font-size:1.75rem;color:var(--primary-teal);text-align:center;margin-bottom:1.5rem;overflow-wrap:break-word}.funnel-video-wrapper{position:relative;width:100%;max-width:100%;border-radius:1rem;overflow:hidden;box-shadow:0 8px 32px rgba(43,94,101,.15)}.funnel-video-wrapper .funnel-video-native{display:block;width:100%;height:auto;vertical-align:middle;background:#1a2a2e}.funnel-video-placeholder{position:relative;width:100%;padding-bottom:56.25%;height:0;background:#1a2a2e}.funnel-video-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.funnel-video-fallback{position:absolute;top:0;left:0;width:100%;height:100%}.funnel-video-poster{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:#1a2a2e;overflow:hidden}.funnel-video-poster img{width:100%;height:100%;object-fit:cover;object-position:center;opacity:.7;display:block}.funnel-visual{padding:0;overflow:hidden;background:var(--light-gray)}.funnel-visual-inner{max-width:1000px;margin:0 auto;padding:0 1.5rem}.funnel-visual-img{width:100%;height:auto;display:block;border-radius:1rem;box-shadow:0 8px 32px rgba(43,94,101,.12)}.funnel-visual--brunch .funnel-visual-inner,.funnel-visual--family .funnel-visual-inner{padding:1rem 1.5rem}.funnel-visual--brunch .funnel-visual-img{max-width:680px;margin-left:auto;margin-right:auto}.client-experience-headline{font-family:'Playfair Display',serif;font-size:clamp(1.5rem, 4vw, 2rem);font-weight:700;color:var(--primary-teal);text-align:center;margin-bottom:1.25rem;line-height:1.3}.funnel-video-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,.95);color:var(--primary-teal);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 24px rgba(0,0,0,.3);transition:transform .2s,background .2s;flex-shrink:0}.funnel-video-play:hover{transform:translate(-50%,-50%) scale(1.08);background:#fff}.funnel-video-play svg{width:32px;height:32px;margin-left:4px}.funnel-video-hint{position:absolute;bottom:1rem;left:.75rem;right:.75rem;width:calc(100% - 1.5rem);max-width:100%;font-size:.75rem;color:rgba(255,255,255,.85);margin:0 auto;text-align:center;overflow-wrap:break-word;word-wrap:break-word}.funnel-social-proof{display:none!important;padding:3rem 1.5rem;padding-left:max(1.5rem,env(safe-area-inset-left));padding-right:max(1.5rem,env(safe-area-inset-right));background:#fff}.funnel-social-proof-inner{max-width:900px;margin:0 auto}.funnel-testimonials-trust{text-align:center;margin-bottom:1rem}.funnel-testimonials-trust-img{width:80px;height:80px;border-radius:50%;object-fit:cover;border:3px solid rgba(43,94,101,.2);box-shadow:0 4px 12px rgba(0,0,0,.08)}.funnel-section-title{font-family:Lobster,cursive;font-size:1.75rem;color:var(--primary-teal);text-align:center;margin-bottom:2rem;overflow-wrap:break-word}.funnel-testimonials-intro{font-size:1rem;color:var(--text-secondary);text-align:center;margin:-1rem auto 1.5rem;max-width:28em;line-height:1.45}.funnel-testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:1.5rem;min-width:0}.funnel-testimonial-card{background:var(--light-gray);border-radius:1rem;padding:1.5rem;text-align:left;border:1px solid rgba(43,94,101,.1);min-width:0;overflow-wrap:break-word}.funnel-stars{display:flex;gap:.2rem;margin-bottom:.75rem}.funnel-testimonial-quote{font-size:1.05rem;line-height:1.6;color:var(--text);margin:0 0 1rem;font-style:italic;overflow-wrap:break-word;word-wrap:break-word}.funnel-testimonial-author{display:flex;align-items:center;gap:.75rem;font-size:.9rem;color:var(--text-secondary);min-width:0;overflow-wrap:break-word}.funnel-testimonial-avatar{width:36px;height:36px;border-radius:50%;background:var(--primary-teal);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;flex-shrink:0}.funnel-benefits{padding:3rem 1.5rem;padding-left:max(1.5rem,env(safe-area-inset-left));padding-right:max(1.5rem,env(safe-area-inset-right));background:#fff}.funnel-benefits-inner{max-width:600px;margin:0 auto}.funnel-benefits-sub{font-size:1.05rem;color:var(--text);opacity:.9;margin:-.25rem 0 1.5rem;line-height:1.4}.funnel-benefits-list{list-style:none;margin:0;padding:0}.funnel-benefit-item{display:flex;align-items:flex-start;gap:1rem;padding:.9rem 0;border-bottom:1px solid rgba(43,94,101,.08);font-size:1.05rem;color:var(--text);min-width:0}.funnel-benefit-item:last-child{border-bottom:none}.funnel-benefit-item span:last-child{overflow-wrap:break-word;word-wrap:break-word;flex:1;min-width:0}.funnel-benefit-icon{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;color:#22c55e}.funnel-benefit-icon svg{display:block}.funnel-cta-final{padding:3rem 1.5rem;padding-left:max(1.5rem,env(safe-area-inset-left));padding-right:max(1.5rem,env(safe-area-inset-right));background:rgba(43,94,101,.06);text-align:center}.funnel-cta-final-inner{max-width:640px;margin:0 auto}.funnel-cta-final-headline{font-family:Lobster,cursive;font-size:1.75rem;color:var(--primary-teal);margin-bottom:.5rem;overflow-wrap:break-word}.funnel-cta-final-sub{font-size:1rem;color:var(--text-secondary);margin-bottom:1.5rem}.funnel-role-buttons{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;align-items:center;margin-top:1.75rem;padding-top:1.25rem;border-top:1px solid rgba(43,94,101,.15)}.funnel-role-buttons .funnel-link{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:.875rem 1.75rem;border-radius:.75rem;font-weight:700;font-size:1.05rem;text-decoration:none;transition:transform .2s,box-shadow .2s,background .2s,color .2s;box-sizing:border-box}.funnel-link-client{background:var(--primary-teal);color:#fff!important;border:2px solid var(--primary-teal);box-shadow:0 4px 14px rgba(43,94,101,.35)}.funnel-link-client:focus-visible,.funnel-link-client:hover{background:var(--darkblue);border-color:var(--darkblue);color:#fff!important;transform:translateY(-2px);box-shadow:0 6px 20px rgba(43,94,101,.4);text-decoration:none}.funnel-link-client,.funnel-link-client:focus-visible,.funnel-link-client:hover{text-decoration:none}.funnel-link-cook{background:#fff;color:var(--primary-teal);border:2px solid var(--primary-teal);box-shadow:0 2px 10px rgba(43,94,101,.12)}.funnel-link-cook:focus-visible,.funnel-link-cook:hover{background:var(--primary-teal);color:#fff;transform:translateY(-2px);box-shadow:0 6px 20px rgba(43,94,101,.35);text-decoration:none}.funnel-secondary-links{margin-top:1.5rem;font-size:.95rem;overflow-wrap:break-word}.funnel-link{color:var(--primary-teal);font-weight:600;text-decoration:none}.funnel-link:hover{text-decoration:underline}@media (max-width:600px){.funnel-role-buttons{flex-direction:column;max-width:280px;margin-left:auto;margin-right:auto}.funnel-role-buttons .funnel-link{width:100%}.funnel-hero{padding:5rem 1rem 3rem;padding-left:max(1rem,env(safe-area-inset-left));padding-right:max(1rem,env(safe-area-inset-right))}.funnel-headline{font-size:clamp(1.5rem, 6vw, 1.85rem);line-height:1.3}.funnel-subheadline{font-size:1rem;margin-bottom:1.75rem}.funnel-cta-primary{flex-direction:column;align-items:stretch;gap:.75rem;margin-bottom:.5rem}.funnel-btn-store{width:100%;max-width:100%;justify-content:center;padding:.875rem 1rem;font-size:.9375rem}.funnel-btn-store span{white-space:normal;line-height:1.25;text-align:center}.funnel-btn-icon{width:24px;height:24px}.funnel-benefits,.funnel-cta-final,.funnel-social-proof,.funnel-video{padding-left:max(1rem,env(safe-area-inset-left));padding-right:max(1rem,env(safe-area-inset-right))}.funnel-video{padding-top:2rem;padding-bottom:2rem}.funnel-video-title{font-size:1.5rem;margin-bottom:1.25rem}.funnel-video-wrapper{border-radius:.75rem}.funnel-video-play{width:64px;height:64px}.funnel-video-play svg{width:28px;height:28px}.funnel-video-hint{font-size:.7rem;left:.5rem;right:.5rem;width:calc(100% - 1rem)}.funnel-section-title{font-size:1.5rem;margin-bottom:1.5rem}.funnel-testimonials-grid{grid-template-columns:1fr}.funnel-testimonial-card{padding:1.25rem}.funnel-testimonial-quote{font-size:1rem}.funnel-benefit-item{font-size:1rem;padding:.75rem 0}.funnel-cta-final-headline{font-size:1.5rem}}@media (max-width:380px){.funnel-hero{padding-top:4.5rem;padding-left:max(.75rem,env(safe-area-inset-left));padding-right:max(.75rem,env(safe-area-inset-right))}.funnel-headline{font-size:1.35rem}.funnel-subheadline{font-size:.9375rem}.funnel-btn-store{font-size:.875rem;padding:.75rem .875rem}.funnel-benefits,.funnel-cta-final,.funnel-social-proof,.funnel-video{padding-left:max(.75rem,env(safe-area-inset-left));padding-right:max(.75rem,env(safe-area-inset-right))}.funnel-cta-final-headline,.funnel-section-title,.funnel-video-title{font-size:1.35rem}}.app-section{padding:6rem 2rem 3rem;background:rgba(43,94,101,.04);position:relative;overflow:hidden;width:100%;margin-top:0}.app-section-inner{max-width:900px;margin:0 auto;text-align:center;position:relative;z-index:1}.app-section-heading{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1rem;flex-wrap:wrap}.app-section-heading .hero-logo{max-width:80px;width:auto;height:auto}.app-section-title{font-family:Lobster,cursive;font-size:2.2rem;font-weight:400;margin-bottom:0;color:var(--primary-teal)}.app-section-description{font-size:1.15em;color:var(--text-secondary);line-height:1.7;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}.footer{background:var(--darkblue);color:var(--white);padding:3rem 0 1rem;margin-top:4rem}.footer-container{max-width:1200px;margin:0 auto;padding:0 2rem}.footer-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:2rem}.footer-logo,.footer-title{display:block;margin-bottom:1rem;border-radius:10px}.footer-logo{margin-left:auto;margin-right:auto;width:80px;height:auto;max-width:100%}.footer-title{font-family:Lobster,cursive;font-size:1.5rem;font-weight:400;color:var(--primary-orange)}@media (min-width:601px){.footer-logo{width:120px}.footer-title{font-size:2rem}body.client-page .client--block.funnel-newsletter-after-cta.client-newsletter-block,body.client-page .funnel-newsletter-after-cta.newsletter-email-card{max-width:480px;margin-left:auto;margin-right:auto}}.footer-description{opacity:.8}.footer-heading{font-size:1.1rem;margin-bottom:1rem;color:#6fd3c6}.footer-links{list-style:none}.footer-links li{margin-bottom:.5rem}.footer-links a{color:var(--white);text-decoration:none;opacity:.8;transition:var(--transition)}.footer-links a:hover{opacity:1;color:var(--primary-orange)}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;text-align:center;opacity:.6}.app-access-banner{animation:.6s ease-out fadeInUp}@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.app-access-btn:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 12px 35px rgba(43,94,101,.5)}.app-access-btn:active{transform:translateY(-1px) scale(1.02)}.app-cta-button:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 12px 40px rgba(43,94,101,.5)}.app-cta-button:active{transform:translateY(-2px) scale(1.02)}.app-cta-button::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:rgba(255,255,255,.2);transition:left .5s}.app-cta-button:hover::before{left:100%}.app-section .store-badge{transition:.3s}.app-section .store-badge:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 8px 25px rgba(0,0,0,.4)}.app-section .store-badge:active{transform:translateY(-1px) scale(1.02)}.app-section .store-badge.apple:hover{box-shadow:0 8px 25px rgba(0,0,0,.5)}.app-section .store-badge.googleplay:hover{box-shadow:0 8px 25px rgba(66,133,244,.5)}@media (max-width:768px){.app-access-banner{padding:1.25rem!important}.app-access-btn{padding:.875rem 1.75rem!important;font-size:1em!important}.app-cta-button{padding:1rem 2rem!important;font-size:1.05em!important}.app-section .store-badge{width:100%;max-width:280px;justify-content:center}}.social-links{display:flex;gap:1rem;margin-top:1rem}.social-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:rgba(255,255,255,.1);border-radius:50%;color:var(--white);text-decoration:none;transition:var(--transition);position:relative;overflow:hidden}.social-link:hover{background:var(--primary-orange);transform:translateY(-2px);box-shadow:0 5px 15px rgba(200,100,64,.4)}.social-link::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:rgba(255,255,255,.2);transition:left .5s}.social-link:hover::before{left:100%}.social-icon{width:20px;height:20px;transition:var(--transition);fill:var(--white)!important;color:var(--white)!important}.social-link:hover .social-icon{transform:scale(1.1);fill:var(--white)!important;color:var(--white)!important}.social-section{padding:4rem 0;background:var(--light-gray)}.social-container{max-width:1200px;margin:0 auto;padding:0 2rem;text-align:center}.social-title{font-family:Lobster,cursive;font-size:2.5rem;font-weight:400;color:var(--primary-teal);margin-bottom:1rem}.social-subtitle{font-family:Lobster,cursive;font-size:1.2rem;font-weight:400;color:var(--text);margin-bottom:3rem;opacity:.9}.social-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;max-width:1000px;margin:0 auto}.social-card{background:var(--white);padding:2rem 1.5rem;border-radius:20px;text-decoration:none;color:var(--dark-gray);transition:var(--transition);box-shadow:var(--shadow);position:relative;overflow:hidden;border:2px solid transparent}.social-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-hover);border-color:var(--primary-orange)}.social-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--primary-teal);transform:scaleX(0);transition:transform .3s}.social-card:hover::before{transform:scaleX(1)}.social-card-icon{width:60px;height:60px;margin:0 auto 1rem;display:flex;align-items:center;justify-content:center;color:var(--primary-teal);transition:var(--transition)}.social-card-icon svg{width:100%;height:100%;transition:var(--transition)}.social-card h3{font-family:Lobster,cursive;font-size:1.3rem;font-weight:400;margin-bottom:.5rem;color:var(--primary-teal)}.social-card p{font-size:.95rem;margin-bottom:1.5rem;opacity:.8;line-height:1.5}.social-cta{display:inline-block;background:var(--primary-orange);color:var(--white);padding:.5rem 1.5rem;border-radius:25px;font-size:.9rem;font-weight:600;transition:var(--transition)}.social-card:hover .social-cta{background:var(--primary-teal);transform:scale(1.05)}.social-card.instagram:hover{border-color:#e4405f}.social-card.facebook:hover{border-color:#1877f2}.social-card.tiktok:hover{border-color:#000}.social-card.linkedin:hover{border-color:#0a66c2}.social-card.pinterest:hover{border-color:#bd081c}.testimonial{display:flex;flex-direction:column;align-items:flex-start;gap:.3em;margin-bottom:1.2em}.testimonial-card{transition:transform .3s,box-shadow .3s}.testimonial-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(43,94,101,.15)!important}.testimonial-row{display:flex;align-items:center;gap:.7em}.testimonial-text{font-size:1.1em;font-style:italic;color:#333}.testimonial-author{display:block;margin-top:.2em;font-size:1em;color:var(--primary-orange);font-weight:600;margin-left:.5em}.testimonial-icon{font-size:1.4em;opacity:.85}.testimonial-stars{flex-shrink:0;display:flex;justify-content:center;align-items:center;font-size:1.5em;color:#fbbf24;margin-bottom:.2em;letter-spacing:.08em}@media (max-width:600px){.testimonial{font-size:.98rem;padding:.6em .7em;max-width:98vw}.testimonial-stars{font-size:1.1em}.testimonial-text{text-align:center;word-break:break-word}}.client-hero{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:3rem;padding:6rem 2rem 3rem;background:#e0f2f1}.client-hero-content{flex:1 1 350px;min-width:300px}.client-hero-label{font-family:Lato,sans-serif;font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--primary-orange);margin-bottom:.5rem}.client-hero-title{font-family:Lobster,cursive;font-size:2.3rem;font-weight:400;color:var(--primary-teal);margin-bottom:1.1rem}.client-hero-subtitle-mobile,.client-hero-title-mobile{display:none}.client-hero-newslettersubtitle,.client-hero-subtitle{font-family:Lobster,cursive;font-size:1.15rem;font-weight:400;color:var(--text);margin-bottom:.5rem;opacity:.9}.client-hero-arguments{list-style:disc;padding-left:1.35rem;margin:0 0 1.25rem;max-width:32em}.client-hero-argument{font-family:Lato,sans-serif;font-size:1rem;color:var(--text);margin-bottom:.5rem;line-height:1.5}.client-hero-argument:last-child{margin-bottom:0}.client-hero-cta-label{font-size:1.1rem;font-weight:600;color:var(--darkblue);margin-bottom:.75rem;text-align:center}.client-hero-subtitle-why{font-family:Lato,sans-serif;font-size:1rem;color:var(--text-secondary);margin-top:0;margin-bottom:.5rem;max-width:32em;line-height:1.45}.client-hero-subtitle-learn{font-family:Lato,sans-serif;font-size:.98rem;color:var(--text-secondary);margin-top:0;margin-bottom:2rem;max-width:32em;line-height:1.5}.client-cta{background:var(--primary-teal);color:#fff;border:none;box-shadow:0 8px 32px rgba(43,94,101,.2);font-size:1.1rem;padding:.9em 2em;position:relative;animation:1.8s cubic-bezier(.4,0,.2,1) infinite cta-pulse;transition:background .18s cubic-bezier(.4,0,.2,1),color .18s cubic-bezier(.4,0,.2,1),transform .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1)}.client-cta:focus-visible,.client-cta:hover{background:var(--darkblue);color:#fff;transform:translateY(-2px) scale(1.07) rotate(-1deg);box-shadow:0 12px 36px rgba(43,94,101,.25)}.client-cta:active{background:#174046;color:#fff;transform:translateY(1px) scale(.97)}@keyframes cta-pulse{0%,100%{box-shadow:0 0 0 0 rgba(43,94,101,.2)}60%{box-shadow:0 0 0 12px rgba(43,94,101,.08)}}.client-hero-visual{flex:1 1 300px;display:flex;align-items:center;justify-content:center}.client-hero-mockup{max-width:260px;width:100%;border-radius:2.7em;box-shadow:0 8px 32px rgba(43,94,101,.1);background:#fff}.client-howto{padding:3rem 2rem 2rem;background:#fff}.client-steps{display:flex;gap:2.5rem;justify-content:center;flex-wrap:wrap;margin-top:2rem}.client-step{background:#f8fafc;border-radius:1.2em;box-shadow:0 4px 18px rgba(43,94,101,.1),0 1.5px 4px rgba(43,94,101,.1);border:2px solid #b2e3d6;padding:1.5rem 1.2rem;min-width:170px;max-width:220px;text-align:center;display:flex;flex-direction:column;align-items:center}.client-step-icon{font-size:2.2rem;margin-bottom:.7em}.client-step-num{width:2.25rem;height:2.25rem;border-radius:50%;background:var(--primary-teal);color:#fff;font-weight:700;font-size:1.1rem;display:flex;align-items:center;justify-content:center;margin-bottom:.75rem}.client-steps--three .client-step{max-width:260px}.client-moment{padding:3.5rem 1.5rem;background:linear-gradient(180deg,var(--light-gray) 0,#fff 100%)}.client-moment-inner{max-width:620px;margin:0 auto;color:var(--text)}.client-moment-headline{font-family:Lobster,cursive;font-size:clamp(1.6rem, 4vw, 2.1rem);color:var(--primary-teal);text-align:center;margin-bottom:.75rem;line-height:1.25}.client-moment-sub{font-size:1.05rem;color:var(--text-secondary);text-align:center;margin-bottom:1.25rem}.client-moment-quote{margin:1.5rem 0;padding:1.25rem 1.5rem;background:rgba(43,94,101,.06);border-left:4px solid var(--primary-teal);border-radius:0 .5rem .5rem 0;font-style:italic;font-size:1.08rem;line-height:1.6;color:var(--darkblue)}.client-moment-quote p{margin:0}.client-moment-realization{font-size:1.1rem;font-weight:700;color:var(--primary-teal);margin:1.25rem 0 .75rem}.client-moment-list{list-style:none;padding:0;margin:0 0 1.5rem}.client-moment-list li{position:relative;padding-left:1.5rem;margin-bottom:.5rem;font-size:1rem;line-height:1.5;color:var(--text)}.client-moment-list li::before{content:"✓";position:absolute;left:0;color:var(--primary-teal);font-weight:700}.client-moment-reframe{font-size:1rem;margin:1rem 0 .5rem;color:var(--text-secondary)}.client-moment-reframe--right{margin-top:.75rem;color:var(--primary-teal)}.client-moment-reframe strong{font-weight:700}.client-moment-social{font-size:1.05rem;font-weight:600;color:var(--primary-teal);margin:1.5rem 0 .5rem;text-align:center}.client-moment-now{font-size:1.1rem;font-weight:700;color:var(--darkblue);margin:1.5rem 0 .75rem}.client-moment-outcomes{list-style:none;padding:0;margin:0}.client-moment-outcomes li{position:relative;padding-left:1.5rem;margin-bottom:.4rem;font-size:1rem;line-height:1.5;color:var(--text)}.client-moment-outcomes li::before{content:"→";position:absolute;left:0;color:var(--primary-orange);font-weight:700}.client-welt-description{padding:3rem 2rem;background:#fff;text-align:center}.client-welt-description-inner{max-width:720px;margin:0 auto}.client-welt-description-text{font-size:1.08rem;line-height:1.7;color:var(--text-secondary);margin-top:1rem;text-align:center}.client-chefs-soon{padding:3rem 2rem;background:linear-gradient(135deg,#f0f9f8 0,#e8f4f3 100%);text-align:center}.client-chefs-soon-inner{max-width:560px;margin:0 auto}.client-chefs-soon-text{font-size:1.1rem;color:var(--text-secondary);line-height:1.65;margin-top:1rem;margin-bottom:1.5rem}.client-chefs-soon-cta-label{font-size:.95rem;color:var(--text);margin-bottom:1rem}.client-chefs-soon-btn{display:inline-block;padding:.85em 1.8em;background:var(--primary-teal);color:#fff;font-weight:600;text-decoration:none;border-radius:2em;transition:var(--transition);box-shadow:0 4px 14px rgba(43,94,101,.25)}.client-chefs-soon-btn:hover{background:var(--darkblue);transform:translateY(-2px);box-shadow:0 6px 20px rgba(43,94,101,.3)}.client-services{padding:3rem 2rem 2rem;background:#f8f9fa}.client-services-list{display:flex;gap:2rem;flex-wrap:wrap;justify-content:center;margin-top:2rem}.client-service-card{background:#fff;border-radius:1.2em;box-shadow:0 2px 12px rgba(43,94,101,.07);padding:1.5rem 1.2rem;min-width:180px;max-width:240px;text-align:center;display:flex;flex-direction:column;align-items:center}.client-service-icon{font-size:2.1rem;margin-bottom:.7em;color:var(--primary-teal)}.client-service-icon i{display:block}.client-benefits{padding:3rem 2rem 2rem;background:#fff;text-align:center}.client-benefits-list{display:flex;flex-wrap:wrap;gap:1.5rem 2.5rem;justify-content:center;margin-top:2rem}.client-benefit{background:#e0f2f1;border-radius:1.2em;padding:1.1em 1.7em;font-size:1.08rem;color:#2b5e65;font-weight:500;display:flex;align-items:center;gap:.7em;box-shadow:0 2px 8px rgba(43,94,101,.06)}.client-testimonials{padding:3rem 2rem 2rem;background:#f8f9fa}.client-testimonials-list{display:flex;gap:2rem;flex-wrap:wrap;justify-content:center;margin-top:2rem}.client-testimonial-card{background:#fff;border-radius:1.2em;box-shadow:0 2px 12px rgba(43,94,101,.07);padding:1.5rem 1.2rem;min-width:200px;max-width:260px;text-align:center;display:flex;flex-direction:column;align-items:center}.client-testimonial-avatar{width:60px;height:60px;border-radius:50%;object-fit:cover;margin-bottom:.7em;border:2px solid #e0f2f1}.client-testimonial-stars{color:#fbbf24;font-size:1.2em;margin-bottom:.5em}.client-testimonial-author{font-weight:600;color:#c86440;margin-top:.5em}.client-hero-store-buttons{display:flex;flex-direction:column;align-items:center;gap:.75rem}.client-download{padding:3rem 2rem;background:#fff;text-align:center}.client-download-content{display:flex;flex-direction:column;align-items:center;gap:1.5rem;margin-top:2rem}.store-badge{display:flex;align-items:center;border-radius:16px;overflow:hidden;box-shadow:0 4px 18px rgba(43,94,101,.13),0 1.5px 4px rgba(43,94,101,.1);transition:transform .18s cubic-bezier(.4,0,.2,1),box-shadow .18s cubic-bezier(.4,0,.2,1);margin:0 .5em 1em;background:#fff;border:1.5px solid #e0e0e0;vertical-align:middle;padding:.7em 1.5em;min-width:260px;max-width:420px;width:100%;height:76px}.store-badge img{display:block;height:54px;width:auto;min-width:140px;max-width:180px;object-fit:contain;transition:filter .18s}.store-badge:focus-visible,.store-badge:hover{transform:translateY(-3px) scale(1.04) rotate(-1deg);box-shadow:0 8px 32px rgba(43,94,101,.18);border-color:#ffd600;background:#fffbe9}.store-badge:focus-visible img,.store-badge:hover img{filter:brightness(1.08) saturate(1.2)}.store-badge-icon{height:224px;width:224px;margin-right:1.2em;vertical-align:middle;display:inline-block;flex-shrink:0}.client-hero-store-buttons .store-badge{display:inline-flex;align-items:center;justify-content:center;gap:.85rem;padding:.85rem 1.4rem;min-height:56px;text-align:left}.client-hero-store-buttons .store-badge img,.client-hero-store-buttons .store-badge-icon{width:36px;height:36px;min-width:36px;min-height:36px;margin:0;flex-shrink:0;object-fit:contain;display:block}.client-hero-store-buttons .store-badge-text{font-size:1.05rem;font-weight:700;line-height:1.35;letter-spacing:.02em;flex:1 1 auto;min-width:0;display:block}.store-badge-text{font-size:1.22rem;font-weight:700;color:#23424a;letter-spacing:.01em;vertical-align:middle;display:inline-block;white-space:normal;line-height:1.2}@media (max-width:600px){.store-badge{min-width:0;max-width:98vw;height:60px;padding:.3em .7em}.store-badge-icon{height:160px;width:160px;margin-right:.7em}.store-badge-text{font-size:1.05rem}}.client-download-mockup{max-width:90px;width:100%;height:auto;margin:1.2em auto;border-radius:2.7em;display:block}.client-download-cta{font-size:1.1rem;padding:.9em 2em}.funnel-cta-block{margin-bottom:1.5rem}.funnel-trust-line{font-size:.95rem;color:var(--text-secondary);margin:.75rem 0 0;font-weight:500}.funnel-newsletter-after-cta{margin-top:1.25rem}.funnel-newsletter-after-cta .client-newsletter-btn,.funnel-newsletter-after-cta.cook-newsletter-block .client-newsletter-btn,.funnel-newsletter-after-cta.newsletter-email-card .client-newsletter-btn{width:100%;max-width:100%;white-space:normal;box-sizing:border-box}.funnel-newsletter-after-cta .client-newsletter-form{width:100%;min-width:0}.funnel-newsletter-after-cta.newsletter-email-card{min-width:0}.funnel-cta-section{padding:3rem 2rem;text-align:center;background:rgba(43,94,101,.06)}.funnel-cta-headline{font-family:Lobster,cursive;font-size:1.75rem;font-weight:400;color:var(--primary-teal);margin-bottom:.5rem}.funnel-cta-section .funnel-cta-final-sub{font-size:1rem;color:var(--text-secondary);margin-bottom:1.5rem}.funnel-cta-section .client-hero-store-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-left:auto;margin-right:auto}.funnel-cta-section .funnel-cta-newsletter{margin-top:2.5rem;max-width:480px;margin-left:auto;margin-right:auto}.client-cta-newsletter-layout{display:flex;flex-direction:column;align-items:center;gap:1.5rem;margin-top:2.5rem;max-width:960px;margin-left:auto;margin-right:auto}.client-cta-visual{width:100%;max-width:340px}.client-cta-img{width:100%;height:auto;display:block;border-radius:1rem;object-fit:cover}.client-cta-newsletter-layout .client-cta-email{width:100%;margin-top:0}@media (min-width:900px){.client-cta-newsletter-layout{flex-direction:row;align-items:center;justify-content:center;gap:2.5rem;text-align:left}.client-cta-visual{flex:0 0 380px;max-width:380px;order:1;align-self:center;margin-top:-1.5rem}.client-cta-newsletter-layout .client-cta-img{width:100%;height:auto;display:block;border-radius:1rem;object-fit:cover}.client-cta-newsletter-layout .client-cta-email{flex:1 1 auto;min-width:0;order:2;max-width:480px}}.section-title{font-family:Lobster,cursive;font-size:1.7rem;font-weight:400;text-align:center;margin-bottom:.7em;color:var(--primary-teal);position:relative;letter-spacing:.01em;animation:.7s cubic-bezier(.4,0,.2,1) section-title-pop}.section-title::after{content:'';display:block;margin:.35em auto 0;width:2.5em;height:.22em;border-radius:1em;background:var(--primary-teal);opacity:.85;transition:width .3s cubic-bezier(.4,0,.2,1)}.section-title:hover::after{width:4em}@keyframes section-title-pop{0%{transform:scale(.95) translateY(10px);opacity:0}100%{transform:scale(1) translateY(0);opacity:1}}@media (max-width:900px){.client-hero{flex-direction:column;gap:2rem;padding:6rem 1rem 2rem}.client-hero-content,.client-hero-visual{max-width:100%}.client-services-list,.client-steps,.client-testimonials-list{flex-direction:column;gap:1.5rem;align-items:center}.client-download-mockup{max-width:60vw;width:100%;height:auto;margin:1em auto;display:block}}@media (max-width:768px){.client-hero-title-desktop{display:none!important}.client-hero-title-mobile{display:block!important}.client-hero-subtitle-desktop{display:none!important}.client-hero-subtitle-mobile{display:block!important}.client-hero-title{font-size:1.75rem;line-height:1.25;color:var(--darkblue)}.client-hero-newslettersubtitle{font-family:Lato,sans-serif;font-size:1.05rem;line-height:1.5;opacity:1}}@media (max-width:600px){.client-hero-title{font-size:1.5rem}.client-hero-mockup{max-width:80vw}.client-services-list,.client-steps{padding:0 1rem}.client-service-card,.client-step,.client-testimonial-card{min-width:calc(100% - 2rem);max-width:calc(100% - 2rem);padding:1rem .5rem}.client-benefit{padding:.7em 1em;font-size:.98rem}.section-title{font-size:1.1rem}.client-download-mockup{max-width:40vw;width:100%;height:auto;margin:1em auto;display:block}.client-hero-store-buttons{display:flex;flex-direction:column;align-items:center;gap:.7em;margin-bottom:.7em}.client-hero-store-buttons .store-badge{width:100%;max-width:98vw;justify-content:center;height:54px;padding:.3em .7em;background:#fff;color:#c86440;border-radius:16px!important;overflow:hidden!important;box-shadow:0 4px 16px rgba(200,100,64,.1);border:3px solid #e07a4d;font-weight:600;position:relative;z-index:1;transition:border-color .18s,box-shadow .18s,transform .18s;animation:1.8s cubic-bezier(.4,0,.2,1) infinite store-pulse}.client-hero-store-buttons .store-badge:focus-visible,.client-hero-store-buttons .store-badge:hover{color:#e07a4d;transform:translateY(-1px) scale(1.02) rotate(-.5deg);box-shadow:0 6px 18px rgba(200,100,64,.13);border-color:#c86440}.client-hero-store-buttons .store-badge img,.client-hero-store-buttons .store-badge-icon{width:32px;height:32px;min-width:32px;min-height:32px;margin:0}.client-hero-store-buttons .store-badge-text{font-size:1rem;line-height:1.3;font-weight:700;color:#c86440}.client-hero-store-buttons .store-badge.apple{background:#181818;color:#fff;border:3px solid #444}.client-hero-store-buttons .store-badge.apple .store-badge-text{color:#fff}.client-hero-store-buttons .store-badge.apple .store-badge-icon{filter:brightness(0) invert(1)}.client-hero-store-buttons .store-badge.googleplay{background:#01b4e6;color:#fff;border:3px solid #008bb5}.client-hero-store-buttons .store-badge.googleplay .store-badge-text{color:#fff}.client-hero-store-buttons .store-badge.googleplay .store-badge-icon{filter:none}}body.cook-page .client-hero-store-buttons .store-badge{font-family:Lato,sans-serif;font-size:1.0625rem;font-weight:700;min-height:56px;padding:.85rem 1.4rem;gap:.85rem;border-radius:14px;background:#fff;color:#c86440;border:2px solid #e07a4d;box-shadow:0 4px 14px rgba(200,100,64,.12);transition:border-color .2s,box-shadow .2s,transform .2s}body.cook-page .client-hero-store-buttons .store-badge:focus-visible,body.cook-page .client-hero-store-buttons .store-badge:hover{color:#c86440;border-color:#c86440;box-shadow:0 6px 20px rgba(200,100,64,.18);transform:translateY(-2px)}body.cook-page .client-hero-store-buttons .store-badge-text{font-family:Lato,sans-serif;font-size:1.05rem;font-weight:700;line-height:1.35;letter-spacing:.02em;color:inherit}body.cook-page .client-hero-store-buttons .store-badge.apple{background:#000;color:#fff;border-color:#333}body.cook-page .client-hero-store-buttons .store-badge.apple .store-badge-text{color:#fff}body.cook-page .client-hero-store-buttons .store-badge.apple .store-badge-icon{filter:brightness(0) invert(1)}body.cook-page .client-hero-store-buttons .store-badge.googleplay{background:#1a73e8;color:#fff;border-color:#1557b0}body.cook-page .client-hero-store-buttons .store-badge.googleplay .store-badge-text{color:#fff}body.cook-page .client-hero-store-buttons .store-badge.googleplay .store-badge-icon{filter:none}body.cook-page .client-hero-store-buttons{width:100%;max-width:420px}body.cook-page .client-hero-store-buttons .funnel-cta-primary{width:100%;flex-direction:column;align-items:stretch;gap:.75rem}body.cook-page .funnel-btn-store{min-width:0;width:100%;padding:1rem 1.5rem;font-size:1.05rem}@media (min-width:480px){body.cook-page .client-hero-store-buttons{max-width:480px}body.cook-page .funnel-btn-store{padding:1.1rem 1.75rem}}@media (min-width:640px){body.cook-page .client-hero-store-buttons .funnel-cta-primary{flex-direction:row;flex-wrap:wrap;justify-content:flex-start}body.cook-page .funnel-btn-store{flex:1 1 0;min-width:200px;max-width:none}}.cook-hero{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:6rem 2rem 3rem;background:var(--cook-bg)}.cook-hero-content{width:100%;max-width:560px;margin:0 auto}.cook-hero-flex{display:flex;flex-direction:column;align-items:center;gap:0}.cook-hero-main{width:100%;text-align:left}.cook-hero-explore{width:100%;max-width:320px;margin:1.5rem auto 0;display:flex;justify-content:center;align-items:flex-start}.cook-hero-explore-img{width:100%;height:auto;display:block;border-radius:1rem;box-shadow:0 12px 40px rgba(0,0,0,.15)}.cook-hero-main .client-hero-store-buttons,.cook-hero-main .funnel-cta-primary{justify-content:flex-start}.cook-hero-title{font-family:Lobster,cursive;font-size:clamp(1.75rem, 6vw, 2.9rem);font-weight:400;line-height:1.2;color:var(--darkblue);margin-bottom:1rem;text-shadow:0 1px 2px rgba(38,71,78,.08);letter-spacing:.01em}.cook-hero-title .highlight,.cook-hero-title strong{color:var(--primary-orange)}.cook-hero-subtitle{font-family:Lato,sans-serif;font-size:clamp(1rem, 1.8vw, 1.15rem);font-weight:400;line-height:1.5;color:var(--text);margin-bottom:.5rem;max-width:32em}.cook-hero-subtitle--multiline{white-space:pre-line}.cook-hero-subtitle-why{font-family:Lato,sans-serif;font-size:.95rem;color:var(--text-secondary);margin-top:0;margin-bottom:2rem;max-width:32em;line-height:1.45}.cook-hero-benefits{list-style:none;margin:1.25rem 0 1.5rem;padding:0}.cook-hero-benefit{font-family:Lato,sans-serif;font-size:1.05rem;font-weight:500;color:var(--text);margin-bottom:.5rem;padding-left:1.5rem;position:relative}.cook-hero-benefit::before{content:"✓";position:absolute;left:0;color:var(--primary-teal);font-weight:700}.cook-hero-cta-label{font-size:1.1rem;font-weight:600;color:var(--darkblue);margin-bottom:.5rem}.cook-hero-cta-subtitle{font-size:.95rem;color:var(--text-secondary);line-height:1.5;margin-bottom:.75rem;max-width:32em}.cook-newsletter-section{padding:1.5rem 2rem;background:var(--light-gray)}.founding-chefs{padding:3rem 2rem;background:linear-gradient(135deg,var(--primary-teal) 0,var(--darkblue) 100%);color:#fff}.founding-chefs-layout{display:flex;flex-direction:column;align-items:center;gap:2rem;max-width:1100px;margin:0 auto}.founding-chefs-inner{max-width:640px;margin:0 auto;text-align:center;width:100%}.founding-chefs-visual{width:100%;max-width:340px;display:flex;justify-content:center;align-items:center}.founding-chefs-mockup{width:100%;height:auto;display:block;border-radius:1.25rem}@media (min-width:900px){body.cook-page .client-hero-store-buttons{max-width:520px}body.cook-page .funnel-btn-store{min-width:240px;padding:1.15rem 2rem}.founding-chefs-layout{flex-direction:row;align-items:center;justify-content:center;gap:2.5rem;text-align:left}.founding-chefs-inner{flex:1 1 auto;max-width:560px;margin:0;text-align:left}.founding-chefs-inner .founding-chefs-buttons{justify-content:flex-start}.founding-chefs-visual{flex:0 0 auto;max-width:380px;min-width:300px}}.founding-chefs-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);border-radius:1.25rem;padding:2.25rem 2rem;box-shadow:0 8px 32px rgba(0,0,0,.12)}.founding-chefs-card .founding-chefs-title{text-transform:uppercase;letter-spacing:.02em}.founding-chefs-badge{display:inline-block;font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;background:rgba(255,255,255,.2);padding:.4em .9em;border-radius:2em;margin-bottom:1rem}.founding-chefs-title{font-size:clamp(1.5rem, 4vw, 2rem);font-weight:700;line-height:1.25;margin-bottom:.75rem}.founding-chefs-subtitle{font-size:1.05rem;opacity:.95;margin-bottom:1.75rem;line-height:1.5}.founding-chefs-benefits{list-style:none;padding:0;margin:0 0 1.75rem;text-align:left;display:inline-block}.founding-chefs-benefit{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem;font-size:1.05rem}.founding-chefs-benefit-icon{font-size:1.35rem;flex-shrink:0}.founding-chefs-cta-text{font-size:.95rem;opacity:.9;margin-bottom:1.25rem}.founding-chefs-buttons{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}.cook-fees-examples{padding:3.5rem 2rem;background:linear-gradient(180deg,rgba(43,94,101,.06) 0,#fff 100%);border-top:1px solid rgba(43,94,101,.08)}.cook-fees-inner{max-width:920px;margin:0 auto}.cook-fees-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem;margin-bottom:1.25rem}.cook-fees-pill{display:inline-flex;align-items:center;padding:.5rem 1rem;border-radius:2rem;font-size:.9rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase}.cook-fees-pill--gain{background:linear-gradient(135deg,var(--primary-teal),#2d7a82);color:#fff;box-shadow:0 4px 14px rgba(43,94,101,.35)}.cook-fees-pill--free{background:linear-gradient(135deg,#22c55e,#16a34a);color:#fff;box-shadow:0 4px 14px rgba(34,197,94,.35)}.cook-fees-pill--cheap{background:linear-gradient(135deg,var(--primary-orange),#c85a3a);color:#fff;box-shadow:0 4px 14px rgba(200,100,64,.35)}.cook-fees-title{font-family:'Playfair Display',serif;font-size:clamp(1.5rem, 3.8vw, 2.1rem);font-weight:700;color:var(--darkblue);text-align:center;margin-bottom:.75rem;line-height:1.3}.cook-fees-title .cook-fees-title-accent{color:var(--primary-teal)}.cook-fees-intro{text-align:center;color:var(--text-secondary);margin-bottom:2.25rem;font-size:1.05rem;max-width:36em;margin-left:auto;margin-right:auto;line-height:1.5}.cook-fees-cards{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center}.cook-fee-card{background:#fff;border-radius:1.25rem;padding:2rem 1.75rem;min-width:260px;max-width:300px;box-shadow:0 8px 32px rgba(43,94,101,.08),0 2px 8px rgba(0,0,0,.04);border:1px solid rgba(43,94,101,.06);text-align:center;position:relative;overflow:hidden;transition:transform .25s,box-shadow .25s}.cook-fee-card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--primary-teal),var(--primary-orange));opacity:.9}.cook-fee-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(43,94,101,.12),0 4px 12px rgba(0,0,0,.06)}.cook-fee-card--highlight{border-color:rgba(200,100,64,.2);box-shadow:0 8px 32px rgba(200,100,64,.1)}.cook-fee-card--highlight::before{background:var(--primary-orange)}.cook-fee-amount{font-size:clamp(2.25rem, 5vw, 2.75rem);font-weight:700;color:var(--primary-teal);line-height:1.1;margin-bottom:.25rem;letter-spacing:-.02em}.cook-fee-card--highlight .cook-fee-amount{color:var(--primary-orange)}.cook-fee-label{font-size:.95rem;color:var(--text-secondary);text-transform:lowercase;margin-bottom:1rem;font-weight:500}.cook-fee-context{font-size:1rem;color:var(--text);font-weight:600;margin-bottom:.5rem}.cook-fee-welt{font-size:.9rem;color:var(--text-secondary);margin-bottom:.35rem}.cook-fee-welt-barred{text-decoration:line-through;opacity:.65;margin-right:.4rem}.cook-fee-hint{font-size:.8rem;color:var(--text-secondary);opacity:.85}.cook-fees-note{text-align:center;font-size:.9rem;color:var(--text-secondary);margin-top:2rem}.cook-pillars{padding:3rem 1.5rem;background:rgba(43,94,101,.05)}.cook-pillars-inner{max-width:960px;margin:0 auto}.cook-pillars-title{margin-bottom:1.5rem}.cook-pillars-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:1rem}.cook-pillar{background:#fff;border-radius:1rem;padding:1.5rem 1.25rem;text-align:center;box-shadow:0 2px 12px rgba(43,94,101,.08);border:1px solid rgba(43,94,101,.08)}.cook-pillar-icon{font-size:2.25rem;display:block;margin-bottom:.75rem;line-height:1}.cook-pillar-heading{font-family:Lato,sans-serif;font-size:1.15rem;font-weight:700;color:var(--darkblue);margin:0 0 .4em;line-height:1.3}.cook-pillar-desc{font-size:.95rem;color:var(--text-secondary);margin:0;line-height:1.5}@media (min-width:640px){.cook-pillars-grid{grid-template-columns:repeat(3,1fr);gap:1.75rem}}.cook-why-join{padding:3rem 2rem;background:#fff}.cook-why-inner{max-width:1000px;margin:0 auto}.cook-why-cards .cook-service-card{max-width:300px;min-width:260px}.cook-why-icon-wrap{width:3rem;height:3rem;display:flex;align-items:center;justify-content:center;margin-bottom:.75rem}.cook-why-fa{font-size:2rem;color:var(--primary-teal)}.cook-why-card p{font-size:.95rem;color:var(--text-secondary);margin-top:.5rem;line-height:1.5;text-align:center}.cook-steps--three .cook-step{max-width:280px}.cook-step-num{width:2.25rem;height:2.25rem;border-radius:50%;background:var(--primary-orange);color:#fff;font-weight:700;font-size:1.1rem;display:flex;align-items:center;justify-content:center;margin-bottom:.75rem}.cook-step p{font-size:.95rem;color:var(--text-secondary);margin-top:.35rem;line-height:1.5}.cook-cta{margin-top:.5em}.cook-hero-mockup{max-width:260px;width:100%;border-radius:2.7em;box-shadow:0 8px 32px rgba(200,100,64,.1);background:#fff}.cook-hero-mockup--mobile{display:none}.cook-hero-mockup--desktop{display:block}@media (max-width:900px){.cook-hero-mockup--mobile{display:block!important}.cook-hero-mockup--desktop{display:none!important}}.cook-benefits{padding:3rem 2rem 2rem;background:#fff}.cook-benefits-list{display:flex;flex-wrap:wrap;gap:1.5rem 2.5rem;justify-content:center;margin-top:2rem}.cook-benefit{background:#e0f7fa;border-radius:1.2em;padding:1.1em 1.7em;font-size:1.08rem;color:#2b5e65;font-weight:500;display:flex;align-items:center;gap:.7em;box-shadow:0 2px 8px rgba(43,94,101,.06)}.cook-services{padding:3rem 2rem 2rem;background:var(--cook-bg)}.cook-services-list{display:flex;gap:2rem;flex-wrap:wrap;justify-content:center;margin-top:2rem}.cook-service-card{background:#fff;border-radius:1.2em;box-shadow:0 2px 12px rgba(200,100,64,.07);padding:1.5rem 1.2rem;min-width:180px;max-width:240px;text-align:center;display:flex;flex-direction:column;align-items:center}.cook-service-icon{font-size:2.1rem;margin-bottom:.7em}.cook-howto{padding:3rem 2rem 2rem;background:#fff}.cook-howto-subtitle{font-size:1.05rem;color:var(--text-secondary,#475569);text-align:center;max-width:32em;margin:.5rem auto 2rem;line-height:1.5}.cook-steps{display:flex;gap:2.5rem;justify-content:center;flex-wrap:wrap;margin-top:2rem}.cook-step{background:var(--cook-bg);border-radius:1.2em;box-shadow:0 2px 12px rgba(200,100,64,.06);padding:1.5rem 1.2rem;min-width:170px;max-width:220px;text-align:center;display:flex;flex-direction:column;align-items:center}.cook-step-icon{font-size:2.2rem;margin-bottom:.7em}.cook-howto-mockups{display:flex;flex-direction:column;align-items:center;gap:1.5rem;margin-top:2.5rem;padding-top:1rem}.cook-howto-mockup{width:100%;max-width:280px;height:auto;display:block;border-radius:.75rem;box-shadow:0 8px 24px rgba(43,94,101,.12)}@media (min-width:640px){.cook-howto-mockups{flex-direction:row;justify-content:center;align-items:flex-start;gap:1.5rem;flex-wrap:nowrap}.cook-howto-mockup{max-width:240px;flex:1 1 0;min-width:0}}.cook-testimonials{padding:3rem 2rem 2rem;background:var(--cook-bg)}.cook-testimonials-list{display:flex;gap:2rem;flex-wrap:wrap;justify-content:center;margin-top:2rem}.cook-testimonial-card{background:#fff;border-radius:1.2em;box-shadow:0 2px 12px rgba(200,100,64,.07);padding:1.5rem 1.2rem;min-width:200px;max-width:260px;text-align:center;display:flex;flex-direction:column;align-items:center}.cook-testimonial-avatar{width:60px;height:60px;border-radius:50%;object-fit:cover;margin-bottom:.7em;border:2px solid #ffe0e9}.cook-testimonial-author{font-weight:600;color:#c86440;margin-top:.5em}.cook-download{padding:3rem 2rem;background:#fff;text-align:center}.cook-download-content{display:flex;flex-direction:column;align-items:center;gap:1.5rem;margin-top:2rem}.cook-download-layout{max-width:960px;margin-left:auto;margin-right:auto}.cook-download-visual{width:100%;max-width:340px}.cook-download-img{width:100%;height:auto;display:block;border-radius:1rem;object-fit:cover}.cook-download-email{width:100%}@media (min-width:900px){.cook-download-layout{flex-direction:row;align-items:center;justify-content:center;gap:2.5rem;text-align:left}.cook-download-visual{flex:0 0 38%;max-width:400px;order:1}.cook-download-email{flex:1 1 auto;min-width:0;order:2;max-width:480px}}.cook-download-mockup{max-width:120px;width:100%;margin:1.2em 0;border-radius:2.7em}.cook-download-cta{font-size:1.1rem;padding:.9em 2em}@media (max-width:900px){.cook-hero{flex-direction:column;gap:2rem;padding:6rem 1rem 2rem}.cook-hero-content,.cook-hero-visual{max-width:100%}.cook-services-list,.cook-steps,.cook-testimonials-list{flex-direction:column;gap:1.5rem;align-items:center}}@media (max-width:600px){.cook-hero-title{font-size:clamp(1.6rem, 6vw, 2.2rem)}.cook-hero-subtitle{font-size:1.05rem}.cook-hero-mockup{max-width:80vw}.cook-services-list,.cook-steps{padding:0 1rem}.cook-service-card,.cook-step,.cook-testimonial-card{min-width:calc(100% - 2rem);max-width:calc(100% - 2rem);padding:1rem .5rem}.cook-benefit{padding:.7em 1em;font-size:.98rem}.section-title{font-size:1.1rem}.cook-download-mockup{max-width:60vw}}.client-newsletter-block{width:100%;max-width:1000px;margin:0 auto 2.2em}.newsletter-email-card{background:#fff;border:2px solid rgba(43,94,101,.18);border-radius:1.25rem;box-shadow:0 4px 20px rgba(43,94,101,.1),0 1px 4px rgba(0,0,0,.06);padding:2rem 1.75rem 1.5rem;display:flex;flex-direction:column;align-items:center;gap:1rem}.newsletter-email-wrap{display:flex;flex-direction:column;align-items:center;gap:.5rem;width:100%;max-width:100%}.newsletter-arrow-bounce{color:var(--primary-teal);display:flex;align-items:center;justify-content:center;animation:1.5s ease-in-out infinite newsletterArrowBounce}.newsletter-arrow-bounce svg{width:28px;height:28px;display:block}@keyframes newsletterArrowBounce{0%,100%{transform:translateY(0);opacity:1}50%{transform:translateY(8px);opacity:.85}}.cook-newsletter-block.client-newsletter-block{max-width:720px;background:#fff;border-radius:1.5em;box-shadow:0 2px 12px rgba(43,94,101,.07);padding:2em 1.5em 1.2em;display:flex;flex-direction:column;align-items:center;gap:1.1em}.client-newsletter-title{font-family:Lobster,cursive;font-size:1.45rem;font-weight:400;color:var(--darkblue);text-align:center;margin-bottom:.2em}body.client-page .client-newsletter-title{font-family:Lato,sans-serif;font-size:1.1rem;font-weight:600;line-height:1.65;color:var(--text);text-align:center;max-width:28em;margin-left:auto;margin-right:auto;margin-bottom:1rem;letter-spacing:.01em}body.client-page .client-newsletter-title--multiline{white-space:pre-line;font-size:1.05rem;line-height:1.7}body.client-page .client-newsletter-btn{font-family:Lato,sans-serif;font-size:1.05rem;font-weight:700;padding:.9rem 1.5rem;letter-spacing:.02em}.client-newsletter-title--multiline{white-space:pre-line}.cook-newsletter-block .client-newsletter-title{font-family:Lato,sans-serif;font-size:1.25rem;font-weight:600;line-height:1.5;max-width:36em;margin-left:auto;margin-right:auto}.cook-newsletter-block .client-newsletter-title .newsletter-cta-highlight{font-weight:800;font-size:1em;color:var(--primary-teal);border-bottom:2px solid var(--primary-orange);padding-bottom:1px}.cook-newsletter-block .client-newsletter-title .newsletter-cta-sub{display:block;margin-top:.4em;font-size:.95em;font-weight:500;color:var(--text-secondary)}.cook-newsletter-block .client-newsletter-title .newsletter-cta-handwriting{display:block;margin-top:.45em;font-family:Caveat,cursive;font-size:1.35rem;font-weight:600;color:var(--primary-teal);line-height:1.3}.cook-newsletter-block .client-newsletter-form{max-width:520px;margin-left:auto;margin-right:auto}.cook-newsletter-block .client-newsletter-btn{white-space:nowrap;max-width:none;min-width:0}.client-newsletter-block .client-newsletter-form{flex-direction:column;align-items:stretch;gap:1rem}.client-newsletter-block .client-newsletter-input{width:100%;max-width:100%}.client-newsletter-block .client-newsletter-btn{width:100%;max-width:100%;margin-top:0;margin-left:0}@media (min-width:601px){.newsletter-email-card .newsletter-email-wrap .client-newsletter-input{max-width:380px;width:100%}.newsletter-email-card .client-newsletter-btn{max-width:340px;width:auto;margin-left:auto;margin-right:auto;padding-left:2rem;padding-right:2rem}.funnel-newsletter-after-cta .client-newsletter-btn,.funnel-newsletter-after-cta.cook-newsletter-block .client-newsletter-btn{width:100%;max-width:100%;white-space:normal}.client-newsletter-block .client-newsletter-form{max-width:760px;width:100%}.cook-newsletter-block .client-newsletter-form{flex-direction:column;align-items:stretch;gap:1rem;max-width:100%;width:100%}.cook-newsletter-block .client-newsletter-input{width:100%}.cook-newsletter-block .client-newsletter-btn{width:auto;min-width:0;max-width:340px;margin-left:auto;margin-right:auto;padding:.85em 2.25em}.funnel-newsletter-after-cta.cook-newsletter-block .client-newsletter-btn{width:100%;max-width:100%;white-space:normal}.cook-newsletter-block.client-newsletter-block{max-width:840px}.client--block.funnel-newsletter-after-cta .client-newsletter-title .newsletter-arrow{display:block;margin:.4em 0 .2em;text-align:center;font-size:1.6em;line-height:1}}@media (min-width:1024px){.client-newsletter-block .client-newsletter-form{max-width:920px}.cook-newsletter-block .client-newsletter-input{min-width:440px}.newsletter-email-card .newsletter-email-wrap .client-newsletter-input{max-width:380px;min-width:0}.cook-newsletter-block.client-newsletter-block{max-width:920px}}.client-newsletter-form{width:100%;display:flex;gap:.7em;margin-bottom:.2em}.client-newsletter-input{flex:1 1 320px;padding:.7em 1.2em;border-radius:10px;border:2px solid #b2e3d6;font-size:1.18rem;outline:0;background:#f8f9fa;color:#23424a;box-shadow:0 2px 8px rgba(35,66,74,.04);transition:box-shadow .2s,border-color .2s;max-height:44px!important}.client-newsletter-input:focus{box-shadow:0 4px 16px rgba(35,66,74,.13);border-color:#2b5e65}.client-newsletter-btn{margin-top:.85em;padding:.85em 2.2em;border-radius:.5rem;border:none;background:var(--primary-orange);color:#fff;font-weight:700;font-size:1.15rem;letter-spacing:.02em;cursor:pointer;box-shadow:0 4px 16px rgba(200,100,64,.35),0 2px 6px rgba(43,94,101,.15);transition:transform .2s,box-shadow .2s,background .2s;white-space:normal;max-width:320px;width:100%;text-align:center}.client-newsletter-btn:focus-visible,.client-newsletter-btn:hover{background:#d9532a;color:#fff;transform:translateY(-3px);box-shadow:0 8px 24px rgba(200,100,64,.4),0 4px 12px rgba(43,94,101,.2)}.client-newsletter-btn:active{background:#a44d2e;transform:translateY(-1px);box-shadow:0 4px 12px rgba(200,100,64,.3)}.client-newsletter-secure{font-size:.95em;color:var(--primary-teal);font-weight:600;margin-top:.75em;text-align:center;display:flex;align-items:center;justify-content:center;gap:.35em}.client-newsletter-secure-icon{font-size:1em;line-height:1;flex-shrink:0}.client-newsletter-reassure{font-size:1.01em;color:#2b5e65;opacity:.85;margin-top:.1em;font-style:italic;text-align:center}.client-newsletter-spam{font-size:.9em;color:#2b5e65;opacity:.75;margin-top:.25em;text-align:center}.newsletter-arrow{color:#e53935;font-size:1.3em;font-weight:700;margin-left:.25em;vertical-align:middle}@keyframes store-pulse{0%,100%{box-shadow:0 0 0 0 rgba(200,100,64,.13)}60%{box-shadow:0 0 0 8px rgba(200,100,64,.07)}}@media (max-width:600px){.client-newsletter-block{padding:1.2em .5em 1em}.client-newsletter-form{flex-direction:column;gap:1.25em;align-items:stretch}.client-newsletter-input{padding:.4em .7em;font-size:.98rem;min-height:0;height:2.2em;line-height:1.2;box-sizing:border-box;width:100%;max-height:36px!important}.client-newsletter-btn{width:100%;max-width:100%;margin-top:.5em}.cook-newsletter-block .client-newsletter-btn{white-space:normal}.client-hero-store-buttons .store-badge{width:100%;max-width:98vw;justify-content:center;min-height:52px;padding:.75rem 1rem;gap:.75rem}.client-hero-store-buttons .store-badge img,.client-hero-store-buttons .store-badge-icon{width:32px;height:32px;min-width:32px;min-height:32px}.client-hero-store-buttons .store-badge-text{font-size:1rem;line-height:1.3}}.store-badge:active{transform:translateY(3px);transition:transform .12s cubic-bezier(.4,0,.2,1)}.client-hero-mockup-explore-crop{width:100%;max-width:350px;margin:2rem auto 0;overflow:hidden;display:flex;justify-content:center;align-items:center}.client-hero-mockup-explore{width:100%;height:auto;transform:none;border-radius:1.2em}@media (min-width:900px){.client-hero-flex{display:flex;align-items:center;justify-content:space-between;gap:3rem}.client-hero-main{flex:1 1 0;min-width:420px}.client-hero-mockup-explore-crop{flex:0 0 350px;max-width:350px;margin:0;align-self:flex-start}}.cook-hero-image-email{display:flex;flex-direction:column;align-items:center;gap:1.5rem;width:100%;margin-top:1.25rem}.cook-hero-image-email .cook-hero-visual{margin:0}.cook-hero-image-email .cook-hero-email-side{width:100%;max-width:100%;box-sizing:border-box}@media (min-width:900px){.cook-hero-image-email{flex-direction:row;align-items:stretch;justify-content:flex-start;gap:2rem;margin-top:1.5rem;width:100%}.cook-hero-image-email .cook-hero-visual{flex:0 0 auto;width:320px;max-width:320px;min-width:280px}.cook-hero-image-email .cook-hero-visual-img{width:100%;height:auto;display:block;border-radius:1rem;object-fit:cover}.cook-hero-image-email .cook-hero-email-side{flex:1 1 auto;min-width:0;max-width:440px;display:flex;flex-direction:column;align-items:stretch}.cook-hero-image-email .cook-hero-email-side .client-newsletter-form{display:flex;flex-direction:column;align-items:stretch;width:100%}.cook-hero-email-side.cook-newsletter-block.client-newsletter-block{max-width:100%;width:100%;box-sizing:border-box}}.cook-hero-visual{margin:1.25rem auto 1.5rem;max-width:280px}.cook-hero-visual-img{width:100%;height:auto;display:block;border-radius:1rem;box-shadow:0 6px 20px rgba(43,94,101,.15);object-fit:cover;object-position:55% 20%}@media (min-width:768px){.cook-hero-visual{max-width:320px}}.cook-hero-mockup-profile-crop{width:100%;max-width:350px;margin:2rem auto 0;overflow:hidden;display:flex;justify-content:center;align-items:center;border-radius:1.2em}.cook-hero-mockup-profile{width:100%;height:auto;display:block}@media (min-width:900px){.cook-hero-content{max-width:1100px}.cook-hero-flex{flex-direction:row;align-items:center;justify-content:center;gap:2.5rem}.cook-hero-main{flex:1 1 auto;min-width:0}.cook-hero-explore{flex:0 0 auto;max-width:380px;min-width:300px;margin:0}.cook-hero-mockup-profile-crop{margin-top:1.5rem}}.about-section{padding:4rem 2rem;background:var(--white)}.about-section .container{max-width:1200px;margin:0 auto}.about-section h2{font-family:Lobster,cursive;font-weight:400;text-align:center;font-size:2.5rem;margin-bottom:1rem;color:var(--primary-teal)}.about-section h3{font-family:Lobster,cursive;font-weight:400;font-size:1.5rem;margin-bottom:1rem;color:var(--primary-teal)}.about-section-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-top:3rem}.about-section-card{text-align:center;padding:1.5rem}.about-section-card-text{line-height:1.7;color:var(--text-secondary)}.about-section-community{margin-top:3rem;text-align:center;padding:2rem;background:var(--white);border-radius:1rem;box-shadow:var(--shadow-teal)}.about-section-community h3{font-size:1.8rem}.about-section-community p{line-height:1.8;color:var(--text-secondary);max-width:800px;margin:0 auto}.client-faq{padding:4rem 2rem;background:var(--light-gray);text-align:center}.faq-container{max-width:800px;margin:0 auto}.faq-subtitle{font-size:1.1rem;color:var(--dark-gray);margin-bottom:2rem;opacity:.8}.faq-button-container{display:flex;justify-content:center;margin-top:2rem}.faq-button{display:inline-flex;align-items:center;gap:.75rem;background:var(--white);color:var(--text);text-decoration:none;padding:1rem 2rem;border-radius:.5rem;font-weight:600;font-size:1.1rem;transition:var(--transition);border:2px solid var(--primary-teal);box-shadow:0 4px 8px rgba(43,94,101,.15),0 2px 4px rgba(43,94,101,.1);position:relative}.faq-button::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.6);border-radius:.5rem;opacity:0;transition:var(--transition)}.faq-button:focus-visible,.faq-button:hover{transform:translateY(-3px);box-shadow:0 8px 16px rgba(43,94,101,.25),0 4px 8px rgba(43,94,101,.15);color:var(--text);border-color:var(--primary-orange)}.faq-button:hover::before{opacity:1}.faq-button:active{transform:translateY(-1px);box-shadow:0 2px 4px rgba(43,94,101,.2)}.faq-button-icon{font-size:1.2rem}.faq-button-text{font-weight:600}.client-faq .faq-inline{text-align:left;margin-top:2rem}.client-faq .faq-category{margin-bottom:2.5rem}.client-faq .faq-category-title{font-size:1.25rem;font-weight:600;color:var(--primary-orange);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid var(--primary-orange)}.client-faq .faq-item{background:var(--white);border-radius:1rem;margin-bottom:.75rem;box-shadow:0 2px 12px rgba(43,94,101,.08);overflow:hidden;transition:var(--transition)}.client-faq .faq-item:hover{box-shadow:0 4px 20px rgba(43,94,101,.12)}.client-faq .faq-question{width:100%;padding:1.25rem 1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:1rem;color:var(--dark-gray);background:0 0;border:none;text-align:left;font-family:inherit;transition:var(--transition)}.client-faq .faq-question:hover{background:rgba(200,100,64,.05)}.client-faq .faq-question.active{background:rgba(43,94,101,.08);color:var(--primary-teal)}.client-faq .faq-toggle{font-size:.9rem;transition:transform .25s;color:var(--primary-orange);flex-shrink:0;margin-left:.5rem}.client-faq .faq-question.active .faq-toggle{transform:rotate(180deg)}.client-faq .faq-answer{max-height:0;overflow:hidden;transition:max-height .35s;background:rgba(248,249,250,.8)}.client-faq .faq-answer.active{max-height:400px}.client-faq .faq-answer-content{padding:0 1.5rem 1.25rem;color:var(--dark-gray);line-height:1.6;font-size:.95rem}.client-faq .faq-answer-content p{margin:0}.cook-faq{padding:4rem 2rem;background:var(--light-gray);text-align:center}@media (max-width:600px){.client-faq .faq-question{padding:1rem 1.25rem;font-size:.95rem}.client-faq .faq-answer-content{padding:0 1rem 1rem}.client-faq,.cook-faq{padding:3rem 1rem}.faq-button{padding:.875rem 1.5rem;font-size:1rem;flex-direction:column;gap:.5rem}.faq-subtitle{font-size:1rem;white-space:nowrap}section.client-hero,section.client-hero[style*=padding-top]{padding:6rem 1rem 2rem!important;min-height:unset!important;margin-left:0!important;margin-right:0!important;width:100%!important;max-width:100vw!important;box-sizing:border-box!important;overflow-x:hidden!important}.client-hero-content,.client-hero-content[style*=max-width]{max-width:100%!important;margin:0!important;padding-left:1rem!important;padding-right:1rem!important;width:100%!important;box-sizing:border-box!important}.client-hero-title[style*=text-align]{font-size:1.5rem!important;line-height:1.3!important;word-wrap:break-word!important;padding:0!important;margin-left:0!important;margin-right:0!important}.client-hero-subtitle[style*=text-align]{font-size:.9rem!important;padding:0!important;margin-left:0!important;margin-right:0!important}.client-newsletter-block[style*=margin-top]{padding:1.5rem 1rem!important;margin-top:1.5em!important;margin-left:0!important;margin-right:0!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}.client-newsletter-block[style*=margin-top]>div{font-size:.95rem!important;line-height:1.5!important;color:#23424a!important;padding:0!important;margin:0!important;width:100%!important;box-sizing:border-box!important;overflow-x:visible!important}.client-newsletter-block h2[style*=color]{font-size:1.2rem!important;margin:1.5em 0 .8em!important;padding:0!important;word-wrap:break-word!important;color:#2b5e65!important}.client-newsletter-block p{margin-bottom:1em!important;margin-left:0!important;margin-right:0!important;padding:0!important;word-wrap:break-word!important;max-width:100%!important;box-sizing:border-box!important}.client-newsletter-block ul[style*=margin-left]{margin-left:1em!important;margin-bottom:1em!important;margin-right:0!important;padding-right:.5rem!important;padding-left:0!important;max-width:calc(100% - 1em)!important;box-sizing:border-box!important}.client-newsletter-block li{margin-bottom:.5em!important;word-wrap:break-word!important;max-width:100%!important}.client-newsletter-block table[style*=width]{font-size:.85rem!important;display:block!important;width:100%!important;max-width:100%!important;border:none!important;margin:0!important;padding:0!important;box-sizing:border-box!important}.client-newsletter-block thead{display:none!important}.client-newsletter-block tbody{display:block!important;width:100%!important;max-width:100%!important}.client-newsletter-block tbody tr{display:block!important;margin-bottom:1em!important;margin-left:0!important;margin-right:0!important;border:1px solid #ddd!important;border-radius:.5rem!important;padding:.75rem!important;background:#f9f9f9!important;box-shadow:0 1px 3px rgba(0,0,0,.1)!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}.client-newsletter-block td[style*=border]{display:block!important;border:none!important;padding:.4rem 0!important;text-align:left!important;margin:0!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}.client-newsletter-block tbody tr td:first-child:before{content:"Finalité : ";font-weight:700;color:#2b5e65;display:block;margin-bottom:.2rem}.client-newsletter-block tbody tr td:nth-child(2):before{content:"Base légale : ";font-weight:700;color:#2b5e65;display:block;margin-bottom:.2rem;margin-top:.5rem}.client-newsletter-block tbody tr td:nth-child(3):before{content:"Données : ";font-weight:700;color:#2b5e65;display:block;margin-bottom:.2rem;margin-top:.5rem}.client-newsletter-block>div>div[style*=overflow]:nth-of-type(2) table tbody tr td:nth-child(2):before{content:"Durée : "}.client-newsletter-block a{word-break:break-all!important;max-width:100%!important}.client-newsletter-block>div>div[style*=overflow]{margin-left:-1rem!important;margin-right:-1rem!important;padding:0 1rem!important;width:calc(100% + 2rem)!important;max-width:calc(100% + 2rem)!important;box-sizing:border-box!important}.client-hero-content *{max-width:100%!important;box-sizing:border-box!important}}