@charset "iso-8859-1";
/* CSS Document */
@font-face {
  font-family: "Europa Grotesk SH DemBol";
  src: url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.eot");
  src: url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.eot?#iefix") format("embedded-opentype"), 
       url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.woff2") format("woff2"), 
       url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.woff") format("woff"), 
       url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.ttf") format("truetype"), 
       url("https://db.onlinewebfonts.com/t/c37a9f31696dbcc8b86a42827beae565.svg#Europa Grotesk SH DemBol") format("svg");
}

:root {
  --bg-color: #030712; /* Deep midnight */
  --surface-color: #111827;
  --surface-lighter: #1f2937;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --accent-orange: #d24e01; /* Electric orange */
  --accent-orange-glow: rgba(34, 197, 94, 0.2);
  --accent-red: #ef4444;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #0f172a;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

header {
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
}

.logo-wrapper a {
  color: #248cc8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-title {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
}

.site-description {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #248cc8;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-align: center;
  font-size: 0.95rem;
  color: #000;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #000;
  border: none;
}

.btn-primary:hover {
  background-color: #d24e01;
  box-shadow: 0 0 20px var(--accent-orange-glow);
}

.btn-secondary {
  background-color: var(--surface-lighter);
  color: var(--text-primary);
  border: 1px solid #374151;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #d24e01;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  background-color: #111827;
}

.pre-headline {
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 auto 24px;
  max-width: 900px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Authority Block */
.authority {
  padding: 60px 0;
  background-color: var(--surface-color);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  background-color: #002244;
}

.authority-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.book-mockup {
  width: 180px;
  height: 250px;
  background: linear-gradient(145deg, #059669 0%, #064e3b 100%);
  border-radius: 4px 12px 12px 4px;
  display: flex;
  align-items: center;
  padding: 24px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
  position: relative;
}

.book-mockup::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.1);
}

.book-mockup span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.authority p {
  max-width: 500px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: left;
}

/* Comparison Grid */
.comparison {
  padding: 100px 0;
}

.comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background-color: var(--surface-color);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #a9a9a9;
}

.card.agentic {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, rgba(17, 24, 39, 1) 100%);
  border-color: #fff;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card ul {
  list-style: none;
}

.card li {
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
  color: var(--text-secondary);
}

.card li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.card.legacy li::before {
  content: "→";
  color: var(--accent-red);
}

.card.agentic li::before {
  content: "✓";
  color: var(--accent-orange);
}

.card.agentic li {
  color: var(--text-primary);
}

/* Banner */
.secret-weapon {
  padding: 80px 0;
  background-color: var(--accent-orange);
  color: #fff;
  text-align: center;
}

.secret-weapon h2 {
  font-size: 2.5rem;
}

/* Form */
.lead-capture {
  padding: 100px 0;
  background: radial-gradient(circle at top, #111827 0%, #030712 100%);
}

.form-container {
  max-width: 550px;
  margin: 40px auto 0;
  background-color: var(--surface-color);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #1f2937;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background-color: #030712;
  border: 1px solid #374151;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px var(--accent-orange-glow);
}

.checkbox-group {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .authority-flex {
    flex-direction: column;
    text-align: center;
  }
  .authority p {
    text-align: center;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: var(--text-secondary);
}

.site-footer {
  background-color: #2c3e50; /* Dark background, adjust as needed */
  color: #ecf0f1;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

/* Column Sizing */
.footer-col {
  flex: 1;
  min-width: 300px; /* Forces columns to stack on small screens */
}

/* Column 1: Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.contact-list a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #3498db;
}

/* HTML/SVG Icons */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Column 2: Typography */
.footer-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.footer-ipsum {
  margin: 0 0 10px 0;
  font-style: italic;
  color: #bdc3c7;
}

.footer-copy {
  margin: 0;
  font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-col-right {
    text-align: left;
  }
}

/* The container for the link and the message */
.hover-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hover-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px dashed #007bff;
}

/* The message box (hidden by default) */
.hover-message {
  visibility: hidden;
  background-color: #002244;
  color: #fff;
  font-size: small;
  text-align: justify;
  padding: 15px;
  border: 3px solid white; /* Requirements: Rounded corners and max-width */
  border-radius: 12px;
  max-width: 400px;
  width: max-content; /* Shrinks to fit text up to 400px */
  /* Positioning */
  position: absolute;
  z-index: 1;
  top: 125%; /* Places it below the link */
  left: 50%;
  transform: translateX(-50%);
  /* Smooth fade-in effect */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show the message on hover */
.hover-container:hover .hover-message {
  visibility: visible;
  opacity: 1;
}

/* Optional: Small triangle arrow at the bottom of the message */
.hover-message::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* NEW: Flex wrapper for Form and Image */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 65rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.form-container {
  width: 100%;
  max-width: 28rem;
  flex-shrink: 0;
}

/* NEW: Image styling */
.image-container {
  width: 100%;
  max-width: 28rem;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
}

button {
  width: 100%;
  padding: 0.625rem 1rem;
  background-color: #e76f51;
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.success-container {
  text-align: center;
  padding: 2rem;
}

.download-button {
  display: inline-flex;
  height: 3rem;
  padding: 0 2rem;
  background-color: #e76f51;
  color: #ffffff;
  align-items: center;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
}

.libutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  text-align: center;
  color: #ffffff !important;
  width: 200px;
  height: 32px;
  border-radius: 16px;
  background-color: #0A66C2;
  text-decoration: none;
  margin: 1.5rem auto 0;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 1rem;
}

/* NEW: Flex wrapper for Form and Image (Duplicated) */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 65rem;
  align-items: center;
}

.form-container {
  width: 100%;
  max-width: 28rem;
  flex-shrink: 0;
}

/* NEW: Image styling (Duplicated) */
.image-container {
  width: 100%;
  max-width: 28rem;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
}

.success-container {
  text-align: center;
  padding: 2rem;
}

.download-button {
  display: inline-flex;
  height: 3rem;
  padding: 0 2rem;
  background-color: #e76f51;
  color: #ffffff;
  align-items: center;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
}

.libutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  text-align: center;
  color: #ffffff !important;
  width: 200px;
  height: 32px;
  border-radius: 16px;
  background-color: #0A66C2;
  text-decoration: none;
  margin: 1.5rem auto 0;
}

/* Slider */
.slider-container {
  position: relative;
  max-width: 1000px; /* Adjust based on your image widths */
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slides {
  display: flex;
  width: 100%;
  height: auto;
}

.slide {
  width: 100%;
  display: none;
  animation: fadeEffect 0.8s;
}

.slide.active {
  display: block;
}

.slider-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fade Animation */
@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* --- Base Styles (Desktop) --- */
.full-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Added box-sizing so padding doesn't push the container wider than 100% */
  box-sizing: border-box;
  padding: 10px 5%; /* Gives a nice breathing room on the edges */
}

.site-title {
  margin: 0;
}

.site-logo {
  width: 300px; /* Default desktop size */
  max-width: 100%; /* Ensures it never breaks out of its container */
  height: auto;
}

/* Base button styles (assuming you don't already have these set elsewhere) */
.agency-btn {
  padding: 10px 20px;
  font-size: 16px;
  white-space: nowrap; /* Prevents the button text from stacking on two lines */
}

/* --- Mobile Styles (Tablets & Phones under 768px) --- */
@media screen and (max-width: 768px) {
  .site-logo {
    width: 200px; /* Shrinks the logo */
  }
  .agency-btn {
    padding: 8px 15px; /* Shrinks the button padding */
    font-size: 14px; /* Shrinks the button text */
  }
}

/* --- Small Mobile Styles (Phones under 480px) --- */
@media screen and (max-width: 480px) {
  .site-logo {
    width: 140px; /* Shrinks the logo even further for tight spaces */
  }
  .agency-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
/********************************/
/*	todd v. design Style Sheet	*/
/*	textureweeb.com CSS      	*/
/*	Sept 2006					*/
/*	css editor: tyeadon			*/
/********************************/

/*--
body {
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #00000;
	text-transform: inherit;
	text-decoration:none;
	text-align: center;
}

body a:link, body a:active {
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	text-transform: inherit;
	text-decoration:none;
}

.tagsheet {
	color: #999999;
	font-size: 12px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
}
.copy {
	color: #000000;
	font-size: 12px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	text-decoration:none;
}
.PageTitle {
	color: #FFFFFF;
	font-size: 12px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	text-decoration:none
}
.Titles {
	color: #B4D458;
	font-size: 14px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	font-weight: bold;
}
.testamonial {
	color: #666666;
	font-size: 9px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	font-weight: normal;
	padding: 5;
	text-decoration:none;
}

.testamonial a:link{
	color: #666666;
	font-size: 9px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	font-weight: normal;
	padding: 5;
	text-decoration:none;
}
.bluetitles {
	color: #02234c;
	font-size: 11px;
	font-family: Verdana, "Helvetica Condensed", sans-serif;
	text-decoration:none;
}
/*   SIDE NAVIGATION DISPLAY */
.sidenav {
	color: #3471A3;
	font-size: 14px;
	font-family: Verdana, "Helvetica Condensed", sans-serif, ;
	text-decoration:none;
	font-weight:bold;
	padding-top: 20px;
}
a.sidenav:active {
	color: #3471A3;
	font-size: 13px;
	font-family: Verdana, "Helvetica Condensed", sans-serif, ;
	text-decoration:none;
	font-weight:bold;
}
a.sidenav:link {
	color: #3471A3;
	font-size: 13px;
	font-family: Verdana, "Helvetica Condensed", sans-serif, ;
	text-decoration:none;
	font-weight:bold;
}
a.sidenav:hover {
	color: #3471A3;
	font-size: 13px;
	font-family: Verdana, "Helvetica Condensed", sans-serif, ;
	text-decoration:none;
	font-weight:bold;
}
a.sidenav:visited {
	color: #3471A3;
	font-size: 13px;
	font-family: Verdana, "Helvetica Condensed", sans-serif,;
	text-decoration:none;
	font-weight:bold;
}
.ronmc {
	color: #000;
}
--*/
