/*
Theme Name: GUIRTIR LLC
Theme URI: https://guirtirllc.com
Author: GUIRTIR LLC
Author URI: https://guirtirllc.com
Description: Professional SaaS & Marketing theme for GUIRTIR LLC
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guirtir
Tags: business, saas, marketing, clean, professional
*/

/* ─── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #0A2540;
  --accent:    #635BFF;
  --accent2:   #00D4FF;
  --light:     #F6F9FC;
  --white:     #FFFFFF;
  --grey:      #6B7280;
  --dark-grey: #374151;
  --border:    #E5E7EB;
  --shadow:    0 4px 24px rgba(10,37,64,0.10);
  --radius:    12px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--grey); line-height: 1.8; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: #4f46e5; text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { background: var(--light); text-decoration: none; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(10,37,64,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--accent); }
.site-logo:hover { text-decoration: none; }

.main-nav ul { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-weight: 500;
  color: var(--dark-grey);
  font-size: 15px;
  transition: color .2s;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
}
.main-nav .nav-cta:hover { background: #4f46e5; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,91,255,.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: rgba(99,91,255,.2);
  color: var(--accent2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,255,.3);
  margin-bottom: 24px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent2); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 580px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat-num  { font-size: 2.2rem; font-weight: 800; color: var(--white); }
.hero-stat-label{ font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag {
  display: inline-block;
  background: rgba(99,91,255,.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; margin: 0 auto; }

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }

/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: var(--white);
  transition: box-shadow .2s;
}
.pricing-card.popular {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 18px;
  border-radius: 999px;
}
.price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.price span { font-size: 1rem; font-weight: 500; color: var(--grey); }
.pricing-features { margin: 24px 0; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark-grey);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 22px 28px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  transition: background .2s;
}
.faq-question:hover { background: var(--light); }
.faq-question .icon { font-size: 1.2rem; color: var(--accent); transition: transform .3s; }
.faq-answer {
  padding: 0 28px 22px;
  color: var(--grey);
  display: none;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .icon { transform: rotate(45deg); }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-detail  { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(99,91,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail .ci-text strong { display: block; color: var(--primary); font-weight: 600; }
.contact-detail .ci-text span   { color: var(--grey); font-size: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  margin-bottom: 16px;
  color: var(--dark-grey);
  transition: border-color .2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,91,255,.1);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent2); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-links a:hover { color: var(--white); text-decoration: none; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.7); }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.value-item {
  background: var(--light);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.value-item h4 { color: var(--primary); margin-bottom: 6px; }
.value-item p  { font-size: 13px; }

/* ─── PRIVACY ────────────────────────────────────────────────────────────── */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.privacy-content h2 { margin: 40px 0 14px; font-size: 1.4rem; }
.privacy-content h3 { margin: 28px 0 10px; font-size: 1.1rem; color: var(--dark-grey); }
.privacy-content p  { margin-bottom: 14px; }
.privacy-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.privacy-content ul li { color: var(--grey); margin-bottom: 8px; line-height: 1.7; }
.privacy-toc {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.privacy-toc h3 { margin-bottom: 14px; color: var(--primary); }
.privacy-toc ol { margin-left: 18px; }
.privacy-toc ol li { margin-bottom: 8px; }
.privacy-toc ol li a { color: var(--accent); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-image-box{ height: 220px; }
}
@media (max-width: 640px) {
  .main-nav ul    { display: none; flex-direction: column; }
  .hamburger      { display: flex; }
  .footer-grid    { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .hero-stats     { gap: 28px; }
}
