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

:root {
  --background: #0f1014;
  --foreground: #efece4;
  --card: #1c1f2c;
  --card-2: #232838;
  --border: #2c3144;
  --primary: #c9a84c;
  --primary-dark: #b29239;
  --primary-foreground: #0f1014;
  --muted-foreground: #898f9e;
  --secondary: #2c3144;
  --whatsapp: #25D366;
  --whatsapp-dark: #20bd5a;
  --linkedin: #0077B5;
  --linkedin-dark: #006097;
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(201, 168, 76, 0.3); color: var(--primary-foreground); }

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.025em; font-weight: 700; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gradient {
  background: linear-gradient(to right, #f0eee9, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(15, 16, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4);
  padding: 1rem 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.1em; transition: color 0.2s; }
.brand:hover { color: var(--primary); }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.btn-primary-pill {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary);
  color: var(--primary-foreground);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary-pill:hover { background: var(--primary-dark); box-shadow: 0 10px 15px -3px rgba(201,168,76,0.2); }

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; animation: slideDown 0.2s ease-out; }
.mobile-menu-inner { display: flex; flex-direction: column; padding: 1.5rem 1rem; gap: 1rem; }
.mobile-link {
  font-size: 1.125rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  color: var(--foreground); transition: background 0.2s;
}
.mobile-link.active { background: rgba(201,168,76,0.1); color: var(--primary); }
.mobile-link:hover { background: var(--secondary); }

@keyframes slideDown { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 300px; } }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 8rem 1rem 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 12rem 1.5rem 8rem; } }
@media (min-width: 1024px) { .hero { padding: 12rem 2rem 8rem; } }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,16,20,0.4), rgba(15,16,20,0.8) 50%, var(--background));
}
.hero-content { max-width: 80rem; margin: 0 auto; position: relative; z-index: 10; width: 100%; }
.hero-inner { max-width: 48rem; }

.tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }

.hero p.lead {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.625;
}
@media (min-width: 768px) { .hero p.lead { font-size: 1.25rem; } }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 3rem; }

.btn-primary {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(201,168,76,0.25);
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.social-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: white;
  transition: all 0.3s;
}
.btn-whatsapp { background: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 10px 15px -3px rgba(37,211,102,0.2); }
.btn-linkedin { background: var(--linkedin); }
.btn-linkedin:hover { background: var(--linkedin-dark); box-shadow: 0 10px 15px -3px rgba(0,119,181,0.2); }
.btn-mail { background: var(--primary); color: var(--primary-foreground); }
.btn-mail:hover { background: var(--primary-dark); box-shadow: 0 10px 15px -3px rgba(201,168,76,0.2); }

/* ========== SECTIONS ========== */
section.section { padding: 6rem 1rem; }
@media (min-width: 640px) { section.section { padding: 6rem 1.5rem; } }
@media (min-width: 1024px) { section.section { padding: 6rem 2rem; } }

.bg-card { background: var(--card); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }

h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { h2 { font-size: 3rem; } }

.section-intro { max-width: 48rem; margin-bottom: 4rem; }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro p { font-size: 1.25rem; color: var(--muted-foreground); }

/* ========== CHI SONO ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image-wrap { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image-wrap { order: 1; } }
.about-image {
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 10;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-glow {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 8rem; height: 8rem;
  background: rgba(201,168,76,0.2);
  border-radius: 9999px;
  filter: blur(50px);
  z-index: -1;
}
.about-text { order: 1; }
@media (min-width: 1024px) { .about-text { order: 2; } }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.about-text strong { color: var(--foreground); font-weight: 600; }
.about-quote {
  color: var(--primary) !important;
  font-weight: 500;
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1.5rem;
}

/* ========== COSA POSSO FARE ========== */
.cosa-section { position: relative; overflow: hidden; }
.blob-glow {
  position: absolute; top: 0; left: 0;
  width: 500px; height: 500px;
  background: rgba(201,168,76,0.05);
  border-radius: 9999px;
  filter: blur(100px);
  z-index: -1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: 1fr 1fr 1fr; } }

.benefit-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgba(44,49,68,0.5);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 10px 15px -3px rgba(201,168,76,0.05);
}
.benefit-card .icon-box {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--background);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
  box-shadow: var(--shadow-md);
}
.benefit-card:hover .icon-box { transform: scale(1.1); }
.benefit-card p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
}

/* ========== SERVIZI ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-xl);
}
.service-card .icon-box {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}
.service-card:hover .icon-box { transform: scale(1.1); }
.service-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.service-card .desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.625;
}
.service-card .benefit {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.service-card .link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s;
}
.service-card .link span { margin-left: 0.5rem; transition: transform 0.3s; }
.service-card:hover .link span { transform: translateX(0.5rem); }

/* ========== VISIONE ========== */
.vision-card {
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--card), var(--background));
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .vision-card { padding: 4rem; } }

.vision-glow {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(201,168,76,0.1);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}
.vision-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin: 0 auto; }
.vision-content h2 { margin-bottom: 1rem; }
.vision-pillars {
  font-size: 1.25rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .vision-pillars { font-size: 1.5rem; } }
.vision-content p.intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .vision-content p.intro { font-size: 1.25rem; } }
.vision-content p.intro strong { color: var(--foreground); font-weight: 600; }
.keywords { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.keywords span {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(15,16,20,0.5);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ========== PERCHÉ ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr 1fr; } }
.why-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
.why-item .check { color: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.why-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-item p { color: var(--muted-foreground); }

/* ========== CTA FINAL ========== */
.cta-section { padding: 8rem 1rem; position: relative; overflow: hidden; }
@media (min-width: 640px) { .cta-section { padding: 8rem 1.5rem; } }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.05));
  pointer-events: none;
}
.cta-inner { max-width: 56rem; margin: 0 auto; position: relative; z-index: 10; text-align: center; }
.cta-inner h2 { font-size: 3rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .cta-inner h2 { font-size: 3.75rem; } }
.cta-inner p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .cta-inner p { font-size: 1.5rem; } }
.cta-btn-row { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .cta-btn-row { flex-direction: row; } }
.btn-primary-lg {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(201,168,76,0.25);
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary-lg:hover { box-shadow: 0 20px 25px -5px rgba(201,168,76,0.4); transform: translateY(-4px); }

.social-circles { display: flex; justify-content: center; align-items: center; gap: 1rem; }
.social-circle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.3s;
}
.social-circle:hover { transform: scale(1.1); }
.social-circle.wa { background: var(--whatsapp); }
.social-circle.wa:hover { box-shadow: 0 10px 15px -3px rgba(37,211,102,0.3); }
.social-circle.li { background: var(--linkedin); }
.social-circle.li:hover { box-shadow: 0 10px 15px -3px rgba(0,119,181,0.3); }
.social-circle.ml { background: var(--primary); color: var(--primary-foreground); }
.social-circle.ml:hover { box-shadow: 0 10px 15px -3px rgba(201,168,76,0.3); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 1rem 2rem;
}
@media (min-width: 640px) { .site-footer { padding: 4rem 1.5rem 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-col p { color: var(--muted-foreground); margin-bottom: 1.5rem; max-width: 24rem; }
.footer-col h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { color: var(--muted-foreground); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-link { color: var(--primary); }
.footer-link:hover { text-decoration: underline; }

.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--foreground);
  transition: all 0.3s;
}
.footer-social.wa:hover { background: var(--whatsapp); color: white; }
.footer-social.li:hover { background: var(--linkedin); color: white; }
.footer-social.ml:hover { background: var(--primary); color: var(--primary-foreground); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; gap: 1rem; }
.footer-bottom .links a { transition: color 0.2s; }
.footer-bottom .links a:hover { color: var(--primary); }

/* ========== CONTATTI PAGE ========== */
.contatti-main {
  flex-grow: 1;
  padding: 8rem 1rem 6rem;
}
@media (min-width: 640px) { .contatti-main { padding: 8rem 1.5rem 6rem; } }
@media (min-width: 1024px) { .contatti-main { padding: 8rem 2rem 6rem; } }

.contatti-container { max-width: 80rem; margin: 0 auto; }

.contatti-header { max-width: 48rem; margin-bottom: 4rem; }
.contatti-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .contatti-header h1 { font-size: 3.75rem; } }
.contatti-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contatti-grid { grid-template-columns: 2fr 1fr; gap: 5rem; }
}

.form-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2xl);
}
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  height: 3rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea {
  height: auto;
  min-height: 9rem;
  resize: vertical;
  padding: 0.75rem 1rem;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.form-error {
  display: none;
  font-size: 0.875rem;
  color: #f87171;
  margin-top: 0.375rem;
}
.form-group.error .form-error { display: block; }
.form-group.error .form-input,
.form-group.error .form-textarea { border-color: #f87171; }

.btn-submit {
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}
.btn-submit:hover { background: var(--primary-dark); box-shadow: 0 10px 15px -3px rgba(201,168,76,0.2); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.contact-method.wa:hover { border-color: var(--whatsapp); }
.contact-method.li:hover { border-color: var(--linkedin); }
.contact-method.ml:hover { border-color: var(--primary); }

.contact-method .ico {
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.contact-method.wa .ico { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
.contact-method.wa:hover .ico { background: var(--whatsapp); color: white; }
.contact-method.li .ico { background: rgba(0,119,181,0.1); color: var(--linkedin); }
.contact-method.li:hover .ico { background: var(--linkedin); color: white; }
.contact-method.ml .ico { background: rgba(201,168,76,0.1); color: var(--primary); }
.contact-method.ml:hover .ico { background: var(--primary); color: var(--primary-foreground); }

.contact-method h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-method .sub { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; }
.contact-method:hover .sub { color: var(--foreground); }

.quote-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(201,168,76,0.1), transparent);
  border: 1px solid rgba(201,168,76,0.2);
}
.quote-box p { color: var(--muted-foreground); font-style: italic; text-align: center; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-2xl);
  max-width: 24rem;
  z-index: 100;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast h4 { color: var(--primary); margin-bottom: 0.25rem; font-size: 1rem; }
.toast p { color: var(--muted-foreground); font-size: 0.875rem; }

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

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Min-screen helper for contatti */
.flex-page { min-height: 100vh; display: flex; flex-direction: column; }
