/* UltimateTechChoice.com - Bold Geometric Style */
:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --accent: #f59e0b;
  --bg-start: #fff7ed;
  --bg-end: #ffedd5;
  --card-bg: #ffffff;
  --text: #1c1917;
  --text-muted: #78716c;
  --border: #fed7aa;
  --radius: 8px;
  --radius-sharp: 4px;
  --shadow: 0 8px 16px rgba(234, 88, 12, 0.12);
  --shadow-hover: 0 16px 32px rgba(234, 88, 12, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg-start) 0%, var(--bg-end) 50%, #fff 100%);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s, transform 0.2s; }
a:hover { color: var(--primary-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar - Bold bar with gradient */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, #1c1917 0%, #292524 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #fafaf9; font-weight: 600; }
.nav-links a:hover { color: var(--accent); }

/* Hero - Geometric with strong CTA */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0e6?w=1600') center/cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(234,88,12,0.88) 0%, rgba(28,25,23,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  color: #fff;
}
.hero-content h1 { color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.hero-content p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 1.75rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--accent); color: #1c1917; border: none; }
.btn-secondary { background: transparent; color: #fff; border: 3px solid #fff; }

/* Section */
.section { padding: 3.5rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-muted); }

/* Featured - Angular cards with left border */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}
.featured-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.featured-card:hover img { transform: scale(1.06); }
.featured-card .card-body { padding: 1.35rem; }
.featured-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.featured-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.featured-card .btn { font-size: 0.9rem; padding: 0.65rem 1.3rem; background: var(--primary); color: #fff; }

/* Top Picks - Full-width horizontal blocks */
.top-picks .card-h {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border: 2px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.top-picks .card-h:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); }
@media (max-width: 720px) { .top-picks .card-h { grid-template-columns: 1fr; } }
.top-picks .card-h img { width: 100%; height: 240px; object-fit: cover; }
.top-picks .card-h .card-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.top-picks .card-h .stars { margin: 0.5rem 0; }
.top-picks .card-h ul { margin: 0.75rem 0; padding-left: 1.35rem; color: var(--text-muted); font-size: 0.95rem; }
.top-picks .card-h .btn { align-self: flex-start; margin-top: 0.5rem; background: var(--primary); color: #fff; }

/* Comparison table - Bold headers */
.comparison-wrap { overflow-x: auto; margin: 2rem 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}
.comparison-table th,
.comparison-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table th {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.comparison-table tr:hover { background: #fff7ed; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .verdict { font-weight: 700; color: var(--primary); }

/* Footer - Dark with orange accent */
.footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  color: #fafaf9;
  padding: 3rem 0 2rem;
}
.footer a { color: #d6d3d1; }
.footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; font-family: 'Space Grotesk', sans-serif; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer-desc { max-width: 320px; font-size: 0.95rem; color: #a8a29e; line-height: 1.6; }
.footer-disclaimer { padding-top: 1rem; font-size: 0.85rem; color: #a8a29e; text-align: center; }
.footer-bottom { padding-top: 0.75rem; border-top: 1px solid rgba(234,88,12,0.3); text-align: center; font-size: 0.9rem; color: #a8a29e; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(90deg, #1c1917 0%, #292524 100%);
  color: #fafaf9; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 200px; }
.cookie-accept-btn { background: var(--accent); color: #1c1917; border: none; padding: 0.6rem 1.25rem; border-radius: var(--radius); font-weight: 700; cursor: pointer; }
.cookie-accept-btn:hover { opacity: 0.9; }

/* Submit message modal */
.submit-message-modal {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); align-items: center; justify-content: center; padding: 1rem;
}
.submit-message-content {
  background: var(--card-bg); padding: 2rem; border-radius: var(--radius);
  max-width: 400px; text-align: center; box-shadow: var(--shadow-hover);
}
.submit-message-content p { margin-bottom: 1.25rem; font-size: 1.1rem; }
.submit-message-close { background: var(--primary); color: #fff; border: none; padding: 0.7rem 1.5rem; border-radius: var(--radius); font-weight: 700; cursor: pointer; }
.submit-message-close:hover { opacity: 0.9; }

/* Page headers */
.page-hero {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 3rem 0;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(234,88,12,0.25);
}
.page-hero h1 { color: #fff; }

/* About - Box cards */
.about-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.about-card {
  background: var(--card-bg);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.about-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.about-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.about-card h3 { margin-bottom: 0.5rem; }
.about-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Contact */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--card-bg); padding: 1.5rem; border-radius: var(--radius); border: 2px solid var(--border); box-shadow: var(--shadow); }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 0.5rem; color: var(--text-muted); }
.submit-btn { background: var(--primary); color: #fff; border: none; cursor: pointer; padding: 0.9rem 2rem; border-radius: var(--radius); font-weight: 700; font-size: 1rem; transition: opacity 0.2s, transform 0.2s; }
.submit-btn:hover { opacity: 0.95; transform: translateY(-2px); }

/* Legal */
.legal-content { max-width: 720px; margin: 0 auto; background: var(--card-bg); padding: 2rem; border-radius: var(--radius); border: 2px solid var(--border); box-shadow: var(--shadow); }
.legal-content h2 { margin-top: 1.5rem; }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: var(--text-muted); }
.legal-content ul { padding-left: 1.5rem; }

/* Review page */
.review-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; box-shadow: var(--shadow); border: 2px solid var(--border); }
.review-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.review-meta .stars { font-size: 1.25rem; color: var(--accent); }
.review-content { max-width: 780px; margin: 0 auto 2rem; }
.review-content h1 { font-size: clamp(1.85rem, 4.5vw, 2.65rem); margin-bottom: 0.5rem; font-weight: 700; line-height: 1.2; }
.review-content h2 { margin-top: 2.25rem; margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--primary); font-size: clamp(1.35rem, 3vw, 1.7rem); font-weight: 700; }
.review-content p { margin-bottom: 1.35rem; font-size: 1.08rem; line-height: 1.8; }
.review-content strong { font-weight: 600; }
.review-content img { width: 100%; border-radius: var(--radius); margin: 1.75rem 0; box-shadow: var(--shadow); border: 2px solid var(--border); max-height: 480px; object-fit: cover; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box { padding: 1.5rem; border-radius: var(--radius); border: 2px solid var(--border); }
.pros-box { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); }
.cons-box { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); border-color: #fecaca; }
.pros-box h3, .cons-box h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li:before { content: '✔ '; color: #b45309; font-weight: bold; }
.cons-box li:before { content: '✖ '; color: #dc2626; font-weight: bold; }
.pros-box li, .cons-box li { margin-bottom: 0.4rem; padding-left: 0; }
.buy-cta { text-align: center; margin: 2.5rem 0; }
.buy-cta .btn { font-size: 1.1rem; padding: 1rem 2rem; background: var(--primary); color: #fff; }
.review-list .featured-card { margin-bottom: 1rem; }

/* Animations */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.featured-card { animation: slideIn 0.4s ease-out backwards; }
.featured-card:nth-child(1) { animation-delay: 0.05s; }
.featured-card:nth-child(2) { animation-delay: 0.1s; }
.featured-card:nth-child(3) { animation-delay: 0.15s; }
.featured-card:nth-child(4) { animation-delay: 0.2s; }
.featured-card:nth-child(5) { animation-delay: 0.25s; }
.featured-card:nth-child(6) { animation-delay: 0.3s; }
