/* ============================================
   FreshCorpData — Shared Stylesheet
   Design: Google/Linear-level clean SaaS
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === VARIABLES === */
:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --success: #34a853;
  --success-dark: #2d9249;
  --dark: #1a1a2e;
  --gray: #5f6368;
  --light-gray: #80868b;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e8eaed;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-w: 1200px;
  --transition: 0.3s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === CONTAINER === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; width: 100%; }

/* === TYPOGRAPHY === */
h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p { color: var(--gray); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 0.9375rem;
  font-weight: 600; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,115,232,0.3); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: var(--success-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(52,168,83,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f0f0; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === BADGES === */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px; font-size: 0.8125rem;
  font-weight: 600;
}
.badge-green { background: #e6f4ea; color: var(--success); }
.badge-blue { background: #e8f0fe; color: var(--primary); }
.badge-dark { background: var(--dark); color: #fff; }
.badge-orange { background: #fef7e0; color: #e37400; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 72px;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; }
.logo-icon {
  background: var(--primary); color: #fff; width: 36px; height: 36px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.5px;
}
.logo span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.9375rem; font-weight: 500; color: var(--gray);
  transition: color var(--transition); position: relative;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.header-cta .btn { padding: 10px 22px; font-size: 0.875rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.mobile-nav {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: var(--gray); padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }
.mobile-nav .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: #fff; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo-icon { background: var(--primary); }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: color var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.8125rem; transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 24px; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  padding: 80px 0 64px; text-align: center;
}
.hero-home { padding: 100px 0 80px; background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%); }
.hero .badge { margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p.subtitle {
  font-size: 1.25rem; color: var(--gray); max-width: 640px;
  margin: 0 auto 32px; line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.trust-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px; font-size: 0.9375rem; color: var(--gray);
}
.trust-row span { display: flex; align-items: center; gap: 6px; }

/* === STATS ROW === */
.stats-section { padding: 48px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-item p { font-size: 0.9375rem; color: var(--gray); font-weight: 500; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* === CARDS === */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.card-icon-blue { background: #e8f0fe; }
.card-icon-green { background: #e6f4ea; }
.card-icon-orange { background: #fef7e0; }

/* === PRODUCT CARDS (Home) === */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { position: relative; }
.product-card.highlighted { border: 2px solid var(--primary); }
.product-card .card-badge {
  position: absolute; top: -12px; right: 20px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.product-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.product-card .price { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin: 16px 0 8px; }
.product-card .price-sub { font-size: 0.875rem; color: var(--light-gray); margin-bottom: 20px; }
.product-card ul { margin-bottom: 24px; }
.product-card ul li { font-size: 0.9375rem; color: var(--gray); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; }
.product-card ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.product-card .card-desc { font-size: 0.9375rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.product-card .learn-more { font-size: 0.9375rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.product-card .learn-more:hover { gap: 8px; }

/* === WHY SECTION === */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 40px 24px; }
.why-card .icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.9375rem; }

/* === USE CASES === */
.usecases-row {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.usecase-pill {
  padding: 12px 24px; border-radius: 50px; border: 1px solid var(--border);
  font-size: 0.9375rem; font-weight: 500; color: var(--gray);
  background: #fff; transition: all var(--transition); white-space: nowrap;
}
.usecase-pill:hover { border-color: var(--primary); color: var(--primary); background: #e8f0fe; }

/* === SAMPLE TABLE === */
.sample-table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.sample-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 700px; }
.sample-table th {
  background: var(--bg-alt); font-weight: 600; text-align: left;
  padding: 14px 16px; border-bottom: 2px solid var(--border); color: var(--dark);
  white-space: nowrap;
}
.sample-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--gray); }
.sample-table tr:last-child td { border-bottom: none; }
.sample-table .blurred { filter: blur(4px); user-select: none; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; }
.testimonial-card .stars { color: #fbbc04; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem;
}
.testimonial-card .author-info h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.testimonial-card .author-info p { font-size: 0.8125rem; color: var(--light-gray); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1557b0 100%);
  padding: 64px 0; text-align: center; color: #fff; border-radius: 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 32px; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.product-detail:last-of-type { border-bottom: none; }
.product-detail.reverse .product-info { order: 2; }
.product-detail.reverse .product-meta { order: 1; }
.product-info h2 { margin-bottom: 12px; }
.product-info .product-subtitle { font-size: 1.125rem; color: var(--gray); margin-bottom: 24px; }
.product-info h4 { margin-bottom: 12px; color: var(--dark); }
.product-info ul { margin-bottom: 24px; }
.product-info ul li {
  padding: 6px 0; font-size: 0.9375rem; color: var(--gray);
  display: flex; align-items: flex-start; gap: 8px;
}
.product-info ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.product-meta {
  background: var(--bg-alt); border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--border); position: sticky; top: 96px;
}
.product-meta .price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.product-meta .price-period { font-size: 0.9375rem; color: var(--light-gray); margin-bottom: 24px; }
.product-meta ul { margin-bottom: 32px; }
.product-meta ul li {
  padding: 10px 0; font-size: 0.9375rem; color: var(--gray);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.product-meta ul li:last-child { border-bottom: none; }
.product-meta .btn { width: 100%; justify-content: center; }
.product-highlight { background: #e8f0fe; border: 2px solid var(--primary); }

/* === DATA COMPARISON TABLE (Products) === */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.9375rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table thead th { background: var(--dark); color: #fff; font-weight: 600; }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.comparison-table tbody td:first-child { font-weight: 500; color: var(--dark); }
.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: #ea4335; }

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; position: relative; transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-card.popular:hover { transform: scale(1.04); }
.pricing-card .popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pricing-card .pricing-price { font-size: 2.25rem; font-weight: 800; color: var(--dark); margin: 16px 0 4px; }
.pricing-card .pricing-price span { font-size: 1rem; font-weight: 500; color: var(--light-gray); }
.pricing-card .pricing-period { font-size: 0.875rem; color: var(--light-gray); margin-bottom: 24px; }
.pricing-card .pricing-desc { font-size: 0.875rem; color: var(--gray); margin-bottom: 24px; }
.pricing-card ul { text-align: left; margin-bottom: 32px; }
.pricing-card ul li {
  padding: 8px 0; font-size: 0.9375rem; color: var(--gray);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* === FEATURES MATRIX === */
.features-matrix-wrap { overflow-x: auto; }
.features-matrix { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.features-matrix th, .features-matrix td {
  padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border);
}
.features-matrix thead th { background: var(--bg-alt); font-weight: 600; color: var(--dark); }
.features-matrix thead th:first-child { text-align: left; }
.features-matrix tbody td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.features-matrix .check { color: var(--success); font-size: 1.125rem; }
.features-matrix .cross { color: #dadce0; font-size: 1.125rem; }

/* === FAQ / ACCORDION === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left;
  cursor: pointer; transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; position: relative;
  transition: transform var(--transition);
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: ''; position: absolute; background: var(--gray);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: all var(--transition);
}
.faq-question .faq-icon::before { width: 14px; height: 2px; }
.faq-question .faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-question .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; }
.blog-card-img {
  height: 200px; background: var(--bg-alt); border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary); overflow: hidden;
}
.blog-card-body { padding: 24px; }
.blog-card-body .badge { margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.125rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.blog-card-body .read-more { font-size: 0.875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.blog-card-body .read-more:hover { gap: 8px; }

/* Blog Post */
.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-content { max-width: 100%; }
.blog-content h1 { font-size: 2.25rem; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; color: var(--light-gray); font-size: 0.875rem; margin-bottom: 32px; flex-wrap: wrap; }
.blog-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.blog-content p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 20px; color: var(--gray); }
.blog-content ul, .blog-content ol { margin: 0 0 20px 24px; }
.blog-content li { font-size: 1.0625rem; line-height: 1.8; color: var(--gray); margin-bottom: 8px; }
.blog-sidebar { position: sticky; top: 96px; }
.sidebar-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-card h4 { margin-bottom: 12px; }
.sidebar-card p { font-size: 0.875rem; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card ul li { font-size: 0.9375rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--primary); font-weight: 500; }
.sidebar-card ul li a:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 16px; }
.about-story-img {
  background: var(--bg-alt); border-radius: var(--radius); height: 360px;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  border: 1px solid var(--border);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 40px 24px; }
.value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.9375rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; background: var(--bg-alt);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 3px solid var(--border);
}
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: 0.875rem; color: var(--light-gray); }
.trust-section { background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.trust-item h4 { font-size: 1rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.875rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9375rem; color: var(--dark); transition: border-color var(--transition);
  background: #fff; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,115,232,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .required { color: #ea4335; }
.contact-info-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px;
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item .icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.875rem; }
.contact-info-item a { color: var(--primary); font-weight: 500; }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
  background: #e6f4ea; border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success .icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; color: var(--success); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2.25rem; margin-bottom: 8px; }
.legal-content .last-updated { font-size: 0.875rem; color: var(--light-gray); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.legal-content h3 { font-size: 1.125rem; margin: 24px 0 12px; }
.legal-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; color: var(--gray); }
.legal-content ul, .legal-content ol { margin: 0 0 20px 24px; }
.legal-content li { font-size: 1rem; line-height: 1.8; color: var(--gray); margin-bottom: 8px; list-style: disc; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .products-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail.reverse .product-info { order: 1; }
  .product-detail.reverse .product-meta { order: 2; }
  .product-meta { position: static; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-home { padding: 64px 0 56px; }
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item h3 { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .usecases-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 16px; }
  .trust-row { flex-direction: column; align-items: center; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
