@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #6366f1;
  --white: #ffffff;
  --light: #f5f3ff;
  --green: #10b981;
  --dark: #1e1b4b;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(79,70,229,0.06);
  --shadow-md: 0 10px 25px rgba(79,70,229,0.1);
  --shadow-lg: 0 20px 50px rgba(79,70,229,0.14);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem,5vw,3.75rem); font-weight: 700; }
h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 600; }
p { margin-bottom: 1rem; }

.text-accent { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.text-large { font-size: 1.125rem; line-height: 1.8; color: var(--muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
@media(min-width:768px) { .section { padding: 6rem 0; } }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media(min-width:768px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:992px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.align-center { align-items: center; }

/* Disclosure */
.disclosure-bar { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 0.72rem; text-align: center; padding: 0.55rem 1rem; font-weight: 500; }

/* Header */
.header { position: absolute; top: 32px; left: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--transition); padding: 1.25rem 0; }
.header.is-sticky { position: fixed; top: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); padding: 0.85rem 0; box-shadow: var(--shadow-sm); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.4rem; }
.logo-img { height: 32px; width: auto; }
.nav-links { display: none; }
@media(min-width:992px) { .nav-links { display: flex; gap: 2rem; align-items: center; } .nav-links a { color: var(--text); font-weight: 500; font-family: var(--font-accent); font-size: 0.875rem; } .nav-links a:hover { color: var(--primary); } }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--dark); transition: var(--transition); }
@media(min-width:992px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 380px; height: 100vh; background: var(--white); z-index: 1000; padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg); transition: right 0.4s ease; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu.is-active { right: 0; }
.mobile-menu a { font-family: var(--font-accent); font-size: 1.15rem; color: var(--dark); font-weight: 600; }

/* Buttons */
.btn { display: inline-block; padding: 0.9rem 2rem; border-radius: 50px; font-family: var(--font-accent); font-weight: 600; text-align: center; cursor: pointer; transition: var(--transition); border: none; font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 15px rgba(79,70,229,0.3); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-full { width: 100%; }

/* Hero */
.hero { padding: 9rem 0 5rem; background: linear-gradient(135deg, var(--light) 0%, #ede9fe 50%, var(--light) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; }
.hero-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.price-pill { display: inline-block; background: var(--white); color: var(--primary); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 1.2rem; margin: 1.5rem 0; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hero-trust-badges { display: flex; gap: 0.75rem; margin-top: 2rem; align-items: center; flex-wrap: wrap; }
.badge { background: var(--white); padding: 0.45rem 0.9rem; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600; color: var(--dark); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.4rem; }

/* Benefits Bar */
.benefits-bar { background: var(--primary); color: var(--white); padding: 1.75rem 0; }
.benefits-bar .grid { gap: 1.5rem; }
@media(min-width:768px) { .benefits-bar .grid { grid-template-columns: repeat(4,1fr); } }
.benefit-item { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-accent); font-weight: 500; font-size: 0.85rem; }
.benefit-icon { color: #a7f3d0; font-size: 1.3rem; }

/* Cards */
.card { background: var(--white); border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-md); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon { width: 56px; height: 56px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }

/* Check List */
.check-list li { position: relative; padding-left: 2rem; margin-bottom: 0.85rem; font-size: 1rem; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 2px; color: var(--white); background: var(--green); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: bold; }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin-top: 2.5rem; box-shadow: var(--shadow-lg); border-radius: var(--radius-md); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 1.25rem 1.5rem; text-align: center; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--light); font-family: var(--font-accent); color: var(--primary); font-size: 1rem; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.col-highlight { background: rgba(79,70,229,0.03); position: relative; }
.col-highlight::before { content: 'TESTSIEGER'; position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); background: var(--green); color: white; font-size: 0.65rem; padding: 0.2rem 0.7rem; border-radius: 20px; font-family: var(--font-accent); font-weight: bold; letter-spacing: 0.5px; }
.check-green { color: var(--green); font-weight: bold; font-size: 1.15rem; }

/* Process Steps */
.process-step { text-align: center; position: relative; }
.process-step::after { content: ''; position: absolute; top: 40px; right: -50%; width: 100%; height: 2px; background: var(--border); z-index: 1; }
.process-step:last-child::after { display: none; }
@media(max-width:767px) { .process-step::after { display: none; } }
.step-number { width: 72px; height: 72px; background: var(--white); border: 2px solid var(--primary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-family: var(--font-head); font-weight: 700; margin: 0 auto 1.25rem; position: relative; z-index: 2; }

/* Reviews */
.review-section { background: var(--primary); color: var(--white); position: relative; }
.review-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%); opacity: 0.95; }
.review-section .container { position: relative; z-index: 2; }
.review-card { background: var(--white); color: var(--text); padding: 2rem; border-radius: var(--radius-md); }
.stars { color: #fbbf24; margin-bottom: 0.75rem; font-size: 1.1rem; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.85rem; background: var(--white); overflow: hidden; }
.faq-header { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.05rem; color: var(--dark); transition: var(--transition); }
.faq-header:hover { background: var(--light); }
.faq-icon { font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.is-active .faq-icon { transform: rotate(45deg); }
.faq-content { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; }
.faq-item.is-active .faq-content { padding: 0 1.5rem 1.5rem; max-height: 500px; }

/* Order / Detail Layout */
.order-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:992px) { .order-layout { grid-template-columns: 2fr 1fr; } }
.sticky-card { position: sticky; top: 100px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-lg); }
.price-card-header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.price-amount { font-size: 2.75rem; font-weight: 700; color: var(--primary); line-height: 1; font-family: var(--font-head); }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 5rem 0 2rem; }
.footer a { color: #a5b4c8; }
.footer a:hover { color: #c4b5fd; }
.footer-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.8rem; color: #64748b; }

/* Preloader */
.preloader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.5s, visibility 0.5s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-spin { width: 48px; height: 48px; border: 3px solid #e2e8f0; border-top-color: var(--primary); border-radius: 50%; animation: spin 0.9s linear infinite; margin-bottom: 1rem; }
.preloader-txt { font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600; color: var(--primary); letter-spacing: 0.15em; animation: pulse 1.5s ease-in-out infinite; }
.progress-container { width: 200px; height: 4px; background: var(--light); margin-top: 1.5rem; border-radius: 2px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); width: 0%; animation: load 3s ease forwards; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes load { 0% { width: 0; } 100% { width: 100%; } }

/* Cookie */
.cookie-popup { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 -10px 30px rgba(0,0,0,0.1); padding: 1.5rem 2rem; z-index: 9000; transition: bottom 0.5s cubic-bezier(0.68,-0.55,0.27,1.55); }
.cookie-popup.is-visible { bottom: 0; }

/* Fade Animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Article / Review */
.article-header { background: var(--light); padding: 6rem 0 3rem; text-align: center; }
.article-category { display: inline-block; background: var(--primary); color: white; padding: 0.25rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 1px; }
.article-content { max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }
.article-content h2 { margin-top: 2.5rem; }
.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
@media(max-width:767px) { .pro-con-grid { grid-template-columns: 1fr; } }
.pro-box { padding: 2rem; border-radius: var(--radius-md); background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.2); }
.con-box { padding: 2rem; border-radius: var(--radius-md); background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.2); }
.con-box .check-list li::before { content: '\2715'; background: #ef4444; }

/* Page Header (order/contact) */
.page-header { background: var(--light); padding: 6rem 0 2rem; border-bottom: 1px solid var(--border); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-control { width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* Feature Items (order page) */
.feature-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.feature-item .icon { color: var(--green); font-size: 1.2rem; font-weight: bold; }
.table-simple { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.table-simple th, .table-simple td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.table-simple th { color: var(--primary); font-family: var(--font-accent); font-size: 0.9rem; }

/* Rating box */
.rating-box { text-align: center; background: var(--primary); color: white; padding: 3rem 2rem; border-radius: var(--radius-md); margin: 3rem 0; }
.rating-stars { font-size: 2.5rem; color: #fbbf24; margin-bottom: 0.75rem; }
