/* =====================================================
   PICCO ICE — Main Stylesheet
   Premium Australian Ice Cream | India Franchise
   ===================================================== */

/* ─── CSS Variables ─── */
:root {
  --primary:    #0D2B6E;
  --primary-dk: #071A50;
  --accent:     #F5C518;
  --accent-dk:  #D4A800;
  --sky:        #4DC3F0;
  --sky-dk:     #1FA8DE;
  --pink:       #4DC3F0;
  --pink-lt:    #E0F5FF;
  --green:      #7DC242;
  --green-lt:   #EEF7E0;
  --cream:      #EBF8FF;
  --cream-dk:   #C9EDFA;
  --dark:       #0D1B3E;
  --dark-lt:    #1B3070;
  --grey:       #6B7280;
  --grey-lt:    #F3F4F6;
  --white:      #FFFFFF;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
  --shadow:     0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::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(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--grey); line-height: 1.75; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.section-label {
  display: inline-block;
  background: var(--pink-lt);
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { color: var(--dark); margin-bottom: .75rem; }
.section-sub   { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,43,110,.35);
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,43,110,.4); }
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(245,197,24,.35);
}
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,.4); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.05rem; }

/* ─── Navigation ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1rem 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: .65rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
  transition: all var(--transition);
}
.nav-logo-img:hover { transform: scale(1.04); }
.nav-logo-fallback {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
}
#navbar.scrolled .nav-logo-fallback { color: var(--dark); }
#navbar.scrolled .nav-logo { color: var(--dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.15); }
#navbar.scrolled .nav-links a { color: var(--dark-lt); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color: var(--primary); background: var(--grey-lt); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .5rem 1.1rem !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--accent-dk) !important; }
#navbar.scrolled .nav-cta { background: var(--accent) !important; color: var(--white) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
#navbar.scrolled .nav-hamburger span { background: var(--dark); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #071A50 0%, #0D2B6E 40%, #1E5BA3 70%, #4DC3F0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shapes .blob {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.blob-1 { width: 500px; height: 500px; background: var(--accent); top: -150px; right: -100px; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 350px; height: 350px; background: var(--sky); bottom: -100px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-30px) rotate(5deg)} }

.hero-content { position: relative; z-index: 2; padding: 8rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .82rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.6; transform:scale(1.2)} }
.hero-title { color: var(--white); margin-bottom: 1.25rem; }
.hero-title span { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat .num { font-size: 1.85rem; font-weight: 700; color: var(--white); font-family: var(--font-head); }
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.7); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-wrap {
  position: relative;
  width: 340px; height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.hero-cone {
  font-size: 14rem;
  line-height: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
  animation: float 6s ease-in-out infinite;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; font-weight: 600; color: var(--dark);
  animation: float 5s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 30px; right: -20px; animation-delay: .5s; }
.hero-float-card.card-2 { bottom: 60px; left: -20px; animation-delay: 1.2s; }
.hero-float-card .card-icon { font-size: 1.3rem; }

/* ─── Feature Strip ─── */
.feature-strip { background: var(--dark); padding: 1.75rem 0; }
.feature-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.feature-item { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.feature-item .fi { font-size: 1.3rem; }

/* ─── Section: Products preview ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 200px;
  background: var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.product-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.05));
}
.product-card-body { padding: 1.25rem; }
.product-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .4rem;
}
.product-card-body h4 { color: var(--dark); margin-bottom: .4rem; }
.product-card-body p { font-size: .88rem; margin-bottom: 1rem; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* ─── Why Picco ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--pink));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.why-card h4 { margin-bottom: .5rem; }

/* ─── Franchise Teaser ─── */
.franchise-teaser {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 50%, #2A7BBF 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.franchise-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/pattern.svg') repeat;
  opacity: .05;
}
.franchise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; }
.franchise-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.fran-feat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--white);
}
.fran-feat .ff-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.fran-feat h5 { font-size: .92rem; color: var(--white); margin-bottom: .25rem; }
.fran-feat p { font-size: .82rem; color: rgba(255,255,255,.75); }
.franchise-visual { display: flex; flex-direction: column; gap: 1rem; }
.fran-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.fran-card-num { font-size: 2rem; font-family: var(--font-head); font-weight: 700; color: var(--accent); min-width: 2.5rem; }
.fran-card h5 { color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.fran-card p { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ─── Testimonials ─── */
.testimonials-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote { font-size: 2rem; color: var(--primary); opacity: .3; line-height: 1; margin-bottom: .5rem; }
.testi-card p { font-size: .92rem; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .95rem;
}
.testi-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testi-role { font-size: .78rem; color: var(--grey); }
.stars { color: var(--accent); font-size: .85rem; margin-bottom: .75rem; }

/* ─── CTA Band ─── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #F06B2A 100%);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,.75);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col h5 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ─── Page Hero Banner ─── */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, #071A50 0%, #0D2B6E 60%, #4DC3F0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin-top: .75rem; }

/* ─── About Page ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 130px;
}
.about-badge-float .num { font-size: 2rem; font-weight: 700; font-family: var(--font-head); }
.about-badge-float p { font-size: .78rem; color: rgba(255,255,255,.85); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.val-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.val-icon { font-size: 2rem; margin-bottom: .75rem; }
.val-card h4 { font-size: 1rem; margin-bottom: .35rem; }
.val-card p { font-size: .82rem; }

/* ─── Products Page ─── */
.filter-bar { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .55rem 1.25rem;
  border-radius: 50px;
  font-size: .88rem; font-weight: 500;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--grey);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.product-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-full-img {
  height: 220px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem;
  position: relative;
}
.product-full-img .prod-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px;
}
.product-full-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-full-body h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: .5rem; }
.product-full-body p { font-size: .88rem; flex: 1; margin-bottom: 1rem; }
.product-specs { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.spec-chip {
  background: var(--cream);
  font-size: .75rem; font-weight: 500;
  padding: .3rem .75rem; border-radius: 50px;
  color: var(--dark-lt);
  display: flex; align-items: center; gap: .3rem;
}

/* ─── Franchise Page ─── */
.fran-hero-content { max-width: 640px; }
.process-timeline { position: relative; margin-top: 3rem; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute; left: 39px; top: 80px;
  width: 2px; height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--primary), var(--border));
}
.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), #2A7BBF);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem; font-weight: 700; font-family: var(--font-head);
  box-shadow: 0 4px 16px rgba(27,108,168,.3);
  flex-shrink: 0; z-index: 1; position: relative;
}
.step-content { padding-top: .75rem; }
.step-content h4 { color: var(--dark); margin-bottom: .5rem; font-size: 1.15rem; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.offer-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.offer-icon { font-size: 2rem; margin-bottom: .75rem; }
.offer-card h4 { color: var(--dark); margin-bottom: .4rem; font-size: 1rem; }
.investment-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.investment-table th {
  background: var(--primary);
  color: var(--white);
  padding: .85rem 1.25rem;
  text-align: left; font-size: .9rem;
}
.investment-table td { padding: .85rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .9rem; }
.investment-table tr:nth-child(even) td { background: var(--cream); }
.inq-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .88rem; font-weight: 500; color: var(--dark-lt); }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font-body);
  color: var(--dark);
  transition: border-color var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,108,168,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Why Picco Page ─── */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.comparison-table th {
  padding: 1rem 1.25rem; font-size: .9rem;
  background: var(--cream);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.highlight { background: var(--primary); color: var(--white); }
.comparison-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--border); text-align: center; font-size: .88rem; }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table td.highlight { background: rgba(27,108,168,.04); font-weight: 600; color: var(--primary); }
.check { color: #22C55E; font-size: 1.1rem; }
.cross { color: #EF4444; font-size: 1rem; }

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--white);
}
.contact-card h5 { color: var(--dark); margin-bottom: .25rem; }
.contact-card p { font-size: .88rem; }

/* ─── Misc ─── */
.divider { height: 1px; background: var(--border); }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.tag {
  background: var(--grey-lt); color: var(--dark-lt);
  font-size: .75rem; font-weight: 500;
  padding: .25rem .65rem; border-radius: 50px;
}
.show-more-btn { display: flex; margin: 2.5rem auto 0; }
.newsletter-bar {
  background: var(--cream);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.newsletter-form { display: flex; gap: .75rem; max-width: 480px; }
.newsletter-form input { flex: 1; padding: .75rem 1.1rem; border: 1.5px solid var(--border); border-radius: 50px; font-size: .9rem; outline: none; font-family: inherit; }
.newsletter-form input:focus { border-color: var(--primary); }

/* ─── Toast ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: .85rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  font-size: .9rem; display: flex; align-items: center; gap: .65rem;
  transform: translateY(100px); opacity: 0;
  transition: all .4s cubic-bezier(.175,.885,.32,1.275);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #166534; }
.toast.error   { background: #991B1B; }

/* ─── Scroll to top ─── */
#scrollTop {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  width: 44px; height: 44px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition);
  border: none; cursor: pointer;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dk); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 2rem; }
  .franchise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.98); padding: 1rem; flex-direction: column; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark-lt) !important; background: none !important; width: 100%; padding: .75rem 1rem; border-radius: var(--radius); }
  .nav-links a:hover { background: var(--grey-lt) !important; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group.full { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .franchise-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section-pad { padding: 3.5rem 0; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .process-step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step-num { width: 60px; height: 60px; font-size: 1.2rem; }
  .process-step:not(:last-child)::before { left: 29px; }
  .newsletter-form { flex-direction: column; }
}
