/* StrongoTV — Design DNA cloned from iptvsverige.store */
/* Clean/Modern Professional | Inter | #3b82f6 primary | White bg */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-rgb: 59, 130, 246;
  --color-bg: #ffffff;
  --color-bg-muted: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-bg-dark: #0f172a;
  --color-text: #111827;
  --color-text-muted: #64748b;
  --color-text-inverse: #ffffff;
  --color-border: #e5e7eb;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.04);
  --ease: 150ms cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

/* Reset */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--color-text);background:var(--color-bg);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;color:inherit}

/* Typography */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.5rem,3.5vw,2.5rem)}
h3{font-size:clamp(1.15rem,2.5vw,1.5rem)}
.text-primary{color:var(--color-primary)}
.text-muted{color:var(--color-text-muted)}

/* Container */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}

/* ===== NAV ===== */
.st-nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,0.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--color-border)}
.st-nav .container{display:flex;align-items:center;justify-content:space-between;height:72px}
.st-nav .logo{font-size:1.5rem;font-weight:800;color:var(--color-text);display:flex;align-items:center;gap:0.125rem}
.st-nav .logo span{color:var(--color-primary)}
.st-nav-links{display:flex;align-items:center;gap:1.5rem}
.st-nav-links a{font-size:0.875rem;font-weight:500;color:var(--color-text-muted);transition:color var(--ease)}
.st-nav-links a:hover{color:var(--color-primary)}
.st-nav-cta{display:inline-flex;align-items:center;justify-content:center;background:var(--color-primary);color:#fff;padding:0.5rem 1.25rem;border-radius:var(--radius);font-weight:600;font-size:0.875rem;transition:all var(--ease)}
.st-nav-cta:hover{background:var(--color-primary-hover);transform:translateY(-1px);box-shadow:0 4px 12px rgba(var(--color-primary-rgb),0.3)}
.st-hamburger{display:none;background:none;border:none;cursor:pointer;padding:0.5rem}
.st-hamburger svg{width:24px;height:24px;stroke:var(--color-text);stroke-width:2;fill:none}
.st-mobile-menu{display:none;position:fixed;top:72px;left:0;right:0;bottom:0;background:var(--color-bg);z-index:40;padding:1.5rem;flex-direction:column;gap:0.25rem;overflow-y:auto}
.st-mobile-menu.active{display:flex}
.st-mobile-menu a{display:block;padding:0.75rem 1rem;font-size:1rem;font-weight:500;color:var(--color-text);border-radius:var(--radius);transition:background var(--ease)}
.st-mobile-menu a:hover{background:var(--color-bg-muted)}
@media(max-width:1024px){.st-nav-links{display:none}.st-hamburger{display:block}}

/* ===== BUTTONS ===== */
.st-btn{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--radius);padding:0.75rem 1.5rem;font-size:1rem;font-weight:600;border:none;cursor:pointer;transition:all var(--ease);min-height:48px}
.st-btn-primary{background:var(--color-primary);color:#fff}
.st-btn-primary:hover{background:var(--color-primary-hover);transform:translateY(-1px);box-shadow:0 4px 12px rgba(var(--color-primary-rgb),0.3)}
.st-btn-outline{background:transparent;color:var(--color-primary);border:2px solid var(--color-primary)}
.st-btn-outline:hover{background:var(--color-primary);color:#fff}
.st-btn-white{background:#fff;color:var(--color-primary)}
.st-btn-white:hover{background:var(--color-bg-muted)}
.st-btn-lg{padding:1rem 2rem;font-size:1.125rem}
.st-btn-sm{padding:0.5rem 1rem;font-size:0.875rem}
.st-btn-full{width:100%}

/* ===== SECTIONS ===== */
.st-section{padding:5rem 0}
.st-section-muted{background:var(--color-bg-muted)}
.st-section-dark{background:var(--color-bg-dark);color:var(--color-text-inverse)}
.st-section-header{text-align:center;max-width:700px;margin:0 auto 3rem}
.st-section-header p{color:var(--color-text-muted);margin-top:0.75rem;font-size:1.1rem}
.st-section-dark .st-section-header p{color:rgba(255,255,255,0.7)}
.st-badge{display:inline-block;background:rgba(var(--color-primary-rgb),0.1);color:var(--color-primary);padding:0.25rem 0.75rem;border-radius:var(--radius-full);font-size:0.8rem;font-weight:600;margin-bottom:0.75rem;text-transform:uppercase;letter-spacing:0.05em}

/* ===== BANNER ===== */
.st-banner{background:var(--color-primary);color:#fff;text-align:center;padding:0.75rem 1rem;font-size:0.9rem;font-weight:600}
.st-banner strong{font-weight:800}

/* ===== HERO ===== */
.st-hero{padding:6rem 0 4rem;text-align:center;background:linear-gradient(180deg,rgba(var(--color-primary-rgb),0.03) 0%,var(--color-bg) 100%)}
.st-hero h1{margin-bottom:1.25rem}
.st-hero p{color:var(--color-text-muted);font-size:1.2rem;max-width:640px;margin:0 auto 2rem}
.st-hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem}

/* ===== STATS ===== */
.st-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.st-stat-item h3{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;color:var(--color-primary)}
.st-stat-item p{color:var(--color-text-muted);font-size:0.9rem;margin-top:0.25rem}
@media(max-width:768px){.st-stats{grid-template-columns:repeat(2,1fr)}}

/* ===== POSTER ROW ===== */
.st-poster-row{display:flex;gap:1rem;overflow-x:auto;padding-bottom:1rem;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.st-poster-row img{flex:0 0 160px;border-radius:var(--radius);aspect-ratio:2/3;object-fit:cover;scroll-snap-align:start;box-shadow:var(--shadow);transition:transform var(--ease)}
.st-poster-row img:hover{transform:scale(1.05)}

/* ===== CARDS ===== */
.st-card{background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow-sm);transition:box-shadow var(--ease),transform var(--ease)}
.st-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}

/* ===== FEATURES ===== */
.st-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.st-feature-card{padding:2rem;text-align:center}
.st-feature-icon{width:56px;height:56px;margin:0 auto 1rem;background:rgba(var(--color-primary-rgb),0.1);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.st-feature-card h3{font-size:1.1rem;margin-bottom:0.5rem}
.st-feature-card p{color:var(--color-text-muted);font-size:0.95rem}
@media(max-width:768px){.st-features-grid{grid-template-columns:1fr}}

/* ===== PRICING ===== */
.st-pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.st-pricing-card{position:relative;text-align:center}
.st-pricing-card.popular{border-color:var(--color-primary);box-shadow:0 0 0 2px var(--color-primary),var(--shadow-lg)}
.st-pricing-popular-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--color-primary);color:#fff;padding:0.25rem 1rem;border-radius:var(--radius-full);font-size:0.75rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;white-space:nowrap}
.st-pricing-card .st-price{font-size:2.5rem;font-weight:800;color:var(--color-primary);line-height:1}
.st-pricing-card .st-price-period{font-size:0.9rem;color:var(--color-text-muted);font-weight:400}
.st-pricing-card .st-plan-name{font-size:1.1rem;font-weight:700;margin:0.75rem 0}
.st-pricing-card ul{text-align:left;margin:1.25rem 0}
.st-pricing-card ul li{padding:0.35rem 0;font-size:0.9rem;color:var(--color-text-muted);display:flex;align-items:flex-start;gap:0.5rem}
.st-pricing-card ul li::before{content:'';display:inline-block;flex-shrink:0;width:18px;height:18px;margin-top:2px;background:var(--color-success);border-radius:50%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");background-size:12px;background-repeat:no-repeat;background-position:center}
@media(max-width:1024px){.st-pricing-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.st-pricing-grid{grid-template-columns:1fr}}

/* ===== FAQ ===== */
.st-faq-list{max-width:800px;margin:0 auto}
.st-faq-item{border:1px solid var(--color-border);border-radius:var(--radius);margin-bottom:0.75rem;overflow:hidden}
.st-faq-q{width:100%;background:none;border:none;padding:1.25rem 1.5rem;text-align:left;font-size:1rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background var(--ease);font-family:var(--font)}
.st-faq-q:hover{background:var(--color-bg-muted)}
.st-faq-q::after{content:'+';font-size:1.25rem;font-weight:700;color:var(--color-primary);transition:transform var(--ease)}
.st-faq-item.active .st-faq-q::after{content:'\2212'}
.st-faq-a{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.st-faq-item.active .st-faq-a{max-height:600px}
.st-faq-a-inner{padding:0 1.5rem 1.25rem;color:var(--color-text-muted);line-height:1.7}

/* ===== FORMS ===== */
.st-form{max-width:540px;margin:0 auto}
.st-form-group{margin-bottom:1.25rem}
.st-form-label{display:block;font-weight:600;font-size:0.9rem;margin-bottom:0.375rem;color:var(--color-text)}
.st-form-input,.st-form-select,.st-form-textarea{width:100%;padding:0.75rem 1rem;border:1px solid var(--color-border);border-radius:var(--radius);font-size:1rem;background:var(--color-bg);color:var(--color-text);transition:border-color var(--ease),box-shadow var(--ease);min-height:48px}
.st-form-input:focus,.st-form-select:focus,.st-form-textarea:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 3px rgba(var(--color-primary-rgb),0.15)}
.st-form-textarea{min-height:120px;resize:vertical}
.st-form-honeypot{position:absolute;left:-9999px;opacity:0}
.form-message{margin-top:1rem;padding:0.75rem 1rem;border-radius:var(--radius);font-size:0.9rem;font-weight:500}
.form-message--success{background:rgba(34,197,94,0.1);color:#16a34a}
.form-message--error{background:rgba(239,68,68,0.1);color:#dc2626}

/* Trust */
.st-trust{display:flex;align-items:center;justify-content:center;gap:1.5rem;margin-top:1rem;flex-wrap:wrap;font-size:0.85rem;color:var(--color-text-muted)}

/* ===== FOOTER ===== */
.st-footer{background:var(--color-bg-muted);border-top:1px solid var(--color-border);padding:4rem 0 2rem}
.st-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;margin-bottom:3rem}
.st-footer-brand .logo{margin-bottom:1rem}
.st-footer-brand p{color:var(--color-text-muted);font-size:0.9rem;max-width:280px}
.st-footer h4{font-size:0.85rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:1rem;color:var(--color-text)}
.st-footer ul li{margin-bottom:0.5rem}
.st-footer ul a{font-size:0.9rem;color:var(--color-text-muted);transition:color var(--ease)}
.st-footer ul a:hover{color:var(--color-primary)}
.st-footer-bottom{border-top:1px solid var(--color-border);padding-top:1.5rem;text-align:center;font-size:0.85rem;color:var(--color-text-muted)}
.st-footer-address{font-style:normal;color:var(--color-text-muted);font-size:0.85rem;margin-top:0.75rem}
@media(max-width:768px){.st-footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.st-footer-grid{grid-template-columns:1fr}}

/* ===== PAGE HERO (inner) ===== */
.st-page-hero{padding:4rem 0 3rem;background:var(--color-bg-muted);text-align:center}
.st-page-hero h1{margin-bottom:0.75rem}
.st-page-hero p{color:var(--color-text-muted);font-size:1.1rem;max-width:600px;margin:0 auto}
.st-breadcrumb{display:flex;gap:0.5rem;justify-content:center;font-size:0.85rem;color:var(--color-text-muted);margin-bottom:1rem}
.st-breadcrumb a{color:var(--color-primary)}

/* ===== CONTENT / LEGAL ===== */
.st-content{max-width:800px;margin:0 auto}
.st-content h2{margin-top:2rem;margin-bottom:0.75rem;font-size:1.5rem}
.st-content h3{margin-top:1.5rem;margin-bottom:0.5rem;font-size:1.2rem}
.st-content p{margin-bottom:1rem;color:var(--color-text-muted);line-height:1.8}
.st-content ul,.st-content ol{margin-bottom:1rem;padding-left:1.5rem}
.st-content ul{list-style:disc}
.st-content ol{list-style:decimal}
.st-content li{margin-bottom:0.5rem;color:var(--color-text-muted);line-height:1.7}
.st-content strong{color:var(--color-text)}
.st-content a{color:var(--color-primary);text-decoration:underline}
.st-content table{width:100%;border-collapse:collapse;margin:1rem 0}
.st-content th,.st-content td{border:1px solid var(--color-border);padding:0.75rem 1rem;text-align:left;font-size:0.9rem}
.st-content th{background:var(--color-bg-muted);font-weight:600}
.st-content blockquote{border-left:4px solid var(--color-primary);padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(var(--color-primary-rgb),0.03);border-radius:0 var(--radius) var(--radius) 0}
.st-content blockquote p{margin-bottom:0;font-style:italic}

/* ===== CHANNELS ===== */
.st-channel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}
.st-channel-card h3{font-size:1.1rem;margin-bottom:0.5rem}
.st-channel-card .st-channel-count{color:var(--color-primary);font-weight:700;font-size:0.9rem}
.st-channel-card p{color:var(--color-text-muted);font-size:0.9rem;margin-top:0.5rem}

/* ===== SETUP STEPS ===== */
.st-step{display:flex;gap:1.5rem;margin-bottom:2rem;align-items:flex-start}
.st-step-number{flex-shrink:0;width:40px;height:40px;border-radius:50%;background:var(--color-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700}
.st-step-content h3{margin-bottom:0.5rem}
.st-step-content p{color:var(--color-text-muted)}
.st-step img{border-radius:var(--radius);margin-top:1rem;box-shadow:var(--shadow);max-width:600px}

/* ===== TESTIMONIALS ===== */
.st-testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.st-testimonial-card{padding:1.5rem}
.st-testimonial-stars{color:var(--color-warning);margin-bottom:0.75rem}
.st-testimonial-text{font-size:0.95rem;color:var(--color-text-muted);margin-bottom:1rem;line-height:1.7}
.st-testimonial-author{font-weight:600;font-size:0.9rem}
.st-testimonial-location{font-size:0.8rem;color:var(--color-text-muted)}
@media(max-width:768px){.st-testimonials-grid{grid-template-columns:1fr}}

/* ===== RESELLER TIERS ===== */
.st-tier-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
@media(max-width:768px){.st-tier-grid{grid-template-columns:1fr}}

/* ===== UTILITY ===== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.text-center{text-align:center}
.mt-2{margin-top:1rem}
.mt-3{margin-top:1.5rem}
.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}
.mb-4{margin-bottom:2rem}
