/*
Theme Name: Immense Tailwind Theme
Theme URI: https://example.com/
Author: Immense
Author URI: https://example.com/
Description: Minimal WordPress theme with Tailwind CSS, GSAP, ScrollMagic and Swiper slider.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: immense-tailwind
*/

/* Custom base styles - you can extend Tailwind utility classes with your own here */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color:#fff !important;
}
body.open{
	overflow-y:hidden
}
.wp-block-separator{
	margin:5px auto !important;
color:#f7f7f7 !important
}
.bg-main{
	background-color:#cdd3dc
}

.wp-block-heading{
	font-size:25px;
	margin-top:20px;
	margin-bottom:7px
	
}
.mobile {
    /* align-items: center; */
    /* justify-items: center; */
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 100px;
}
#mobile-menu-toggle {
    /* display: block; */
    width: 50%;
    height: 50%;
    /* padding: 10px; */
    /* cursor: pointer; */
    margin: auto;
    position: relative;
}

#mobile-menu-toggle span {
    z-index: 999;
    display: block;
    position: absolute;
    height: 1px;
    margin: auto;
    width: 100%;
    background: rgb(0, 0, 0) !important;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.45s ease-in-out;
    transition: 0.45s ease-in-out;
}
#mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

#mobile-menu-toggle span:nth-child(2) {
  top: 8px;
}

#mobile-menu-toggle span:nth-child(3) {
  top: 16px;
}
#mobile-menu-toggle.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

#mobile-menu-toggle.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
} /*MOBILE*/
header{
	background:#f5f5f5
}
.img-work-single{
	height:350px
}
.hero-global{
		min-height:auto
	}
@media screen and (max-width: 768px) {
		.sticky-module{
	height:auto !important;
		position:block !important
}
}

@media screen and (min-width: 768px) {
.logo{
	width:190px
}
.sticky-module{

	height:200px ;
	position:sticky;
}
	.mobile {
		display:none !important
	}
.img-work {
	height:320px;
	width:100%
}
	.wp-block-heading{
	font-size:35px;
	margin-top:20px;
	margin-bottom:7px
}
	.img-work-single{
	height:600px
}
	.hero-global{
		min-height:80vh
	}

}

.bg-red{
	background:#e52d34 !important;
}


.logo{
	width:150px
}

a {
  text-decoration: none;
}

.menu-item a {
  position: relative;
}

.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.25s ease-out;
}

.menu-item a:hover::after,
.menu-item.current-menu-item a::after {
  width: 100%;
}


 
/* ============================================
   IMMENSE SYSTEMS — LANDING PAGE CSS
   Kopirati u WordPress Custom CSS
   ============================================ */
 
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
:root {
  --bg:       #0A0B0F;
  --bg2:      #111318;
  --bg3:      #181B22;
  --border:   rgba(255,255,255,0.07);
  --white:    #FFFFFF;
  --off:      #A0A8B8;
  --dim:      #5A6278;
  --gold:     #e52d34;
  --gold2:    #f7f7f7;
  --green:    #22C55E;
  --red-soft: #F87171;
 
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
 
  --max: 1140px;
  --r:   20px;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: #000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
 
/* ── UTILS ── */
.imm-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
 
.imm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}
 
.imm-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
 
/* ── HERO ── */
.imm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
 
.imm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}
 
.imm-hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
 
.imm-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
 
.imm-hero-inner .imm-tag { margin-bottom: 32px; }
 
.imm-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
 
.imm-hero h1 em {
  font-style: normal;
  color: #444;
}
 
.imm-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--off);
  max-width: 560px;
  margin: 0 auto 48px;
}
 
.imm-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
 
.imm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:#e52d34;
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(240,180,41,0.4);
}
 
.imm-btn-primary:hover {
  background: var(--gold2);
	color:black;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,180,41,0.3);
}
 
.imm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
 
.imm-btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
 
/* hero stats bar */
.imm-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}
 
.imm-hero-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
 
.imm-hero-stat:last-child { border-right: none; }
 
.imm-hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
 
.imm-hero-stat-label {
  font-size: 12px;
  color: var(--dim);
  font-weight: 400;
}
 
/* ── LOGO STRIP ── */
.imm-logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
 
.imm-logos-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
 
.imm-logos-label {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 8px;
}
 
.imm-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--off);
  background: var(--bg3);
}
 
.imm-logo-chip span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
 
/* ── PROBLEM / SOLUTION ── */
.imm-problem {
  padding: 100px 0;
}
 
.imm-section-header {
  text-align: center;
  margin-bottom: 64px;
}
 
.imm-section-header .imm-tag { margin-bottom: 20px; }
 
.imm-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
 
.imm-section-header p {
  font-size: 17px;
  color: var(--off);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
 
.imm-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
 
@media (max-width: 680px) {
  .imm-compare { grid-template-columns: 1fr; }
}
 
.imm-compare-col {
  border-radius: var(--r);
  padding: 36px;
  border: 1px solid var(--border);
}
 
.imm-compare-col.bad {
  background: rgba(248,113,113,0.04);
  border-color: rgba(248,113,113,0.15);
}
 
.imm-compare-col.good {
  background: rgba(34,197,94,0.04);
  border-color: rgba(34,197,94,0.2);
}
 
.imm-compare-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.imm-compare-title .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
 
.bad .dot { background: var(--red-soft); }
.good .dot { background: var(--green); }
 
.imm-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.imm-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--off);
}
 
.imm-compare-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
 
.bad .imm-compare-list li::before {
  background-color: rgba(248,113,113,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='%23F87171' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
 
.good .imm-compare-list li::before {
  background-color: rgba(34,197,94,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l3 3 4-6' stroke='%2322C55E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
 
/* ── MODULES ── */
.imm-modules {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.imm-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
 
@media (max-width: 800px) {
  .imm-modules-grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 500px) {
  .imm-modules-grid { grid-template-columns: 1fr; }
}
 
.imm-module-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
 
.imm-module-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
 
.imm-module-card:hover { background: var(--bg3); }
.imm-module-card:hover::after { transform: scaleX(1); }
 
.imm-module-icon {
  width: 44px; height: 44px;
  background: rgba(240,180,41,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
 
.imm-module-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
	color:white;
  font-weight: 700;
  margin-bottom: 10px;
}
 
.imm-module-card p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
}
 
/* ── HOW IT WORKS ── */
.imm-how {
  padding: 100px 0;
}
 
.imm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
 
.imm-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
 
.imm-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
 
.imm-step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
 
.imm-step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 14px;
}
 
.imm-step-content p {
  font-size: 15px;
  color: var(--off);
  line-height: 1.7;
}
 
/* ── PRICING ── */
.imm-pricing {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.imm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
@media (max-width: 860px) {
  .imm-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
 
.imm-pricing-card {
  border-radius: var(--r);
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--bg3);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
 
.imm-pricing-card:hover {
  transform: translateY(-4px);
}
 
.imm-pricing-card.featured {
  border-color: var(--gold);
  background: rgba(240,180,41,0.04);
}
 
.imm-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
 
.imm-pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}
 
.imm-pricing-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
 
.imm-pricing-target {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
 
.imm-pricing-price {
  margin-bottom: 8px;
}
 
.imm-pricing-price strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
 
.imm-pricing-price span {
  font-size: 13px;
  color: var(--dim);
  margin-left: 4px;
}
 
.imm-pricing-maintenance {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 28px;
}
 
.imm-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
 
.imm-pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--off);
  line-height: 1.4;
}
 
.imm-pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
 
.imm-pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
 
.imm-pricing-card.featured .imm-pricing-cta {
  background: var(--gold);
  color: #000;
}
 
.imm-pricing-card.featured .imm-pricing-cta:hover {
  background: var(--gold2);
}
 
.imm-pricing-card:not(.featured) .imm-pricing-cta {
  border: 1px solid var(--border);
  color: var(--white);
}
 
.imm-pricing-card:not(.featured) .imm-pricing-cta:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
 
.imm-pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--dim);
}
 
/* ── FAQ ── */
.imm-faq {
  padding: 100px 0;
}
 
.imm-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
 
.imm-faq-item {
  border-bottom: 1px solid var(--border);
}
 
.imm-faq-item:last-child { border-bottom: none; }
 
.imm-faq-q {
  width: 100%;
  text-align: left;
  background: var(--bg2);
  border: none;
  padding: 24px 28px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
 
.imm-faq-q:hover { background: var(--bg3); }
 
.imm-faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s;
}
 
.imm-faq-item.open .imm-faq-icon { transform: rotate(45deg); }
 
.imm-faq-a {
  display: none;
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--off);
  line-height: 1.8;
  background: var(--bg2);
}
 
.imm-faq-item.open .imm-faq-a { display: block; }
 
/* ── CTA BANNER ── */
.imm-cta-banner {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
 
.imm-cta-box {
  background: linear-gradient(135deg, rgba(240,180,41,0.1) 0%, rgba(240,180,41,0.03) 100%);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
.imm-cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
 
.imm-cta-box .imm-tag { margin-bottom: 24px; }
 
.imm-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
 
.imm-cta-box p {
  font-size: 17px;
  color: var(--off);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
 
.imm-cta-box .imm-hero-ctas { margin-bottom: 0; }
 
/* ── FOOTER ── */
.imm-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
 
.imm-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
 
.imm-footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
 
.imm-footer-brand span { color: var(--gold); }
 
.imm-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
 
.imm-footer-links a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
 
.imm-footer-links a:hover { color: var(--white); }
 
.imm-footer-copy {
  font-size: 12px;
  color: var(--dim);
}
 
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.imm-hero-inner > * {
  animation: fadeUp 0.6s ease both;
}
 
.imm-hero-inner .imm-tag         { animation-delay: 0.1s; }
.imm-hero-inner h1                { animation-delay: 0.2s; }
.imm-hero-inner .imm-hero-sub     { animation-delay: 0.3s; }
.imm-hero-inner .imm-hero-ctas    { animation-delay: 0.4s; }
.imm-hero-inner .imm-hero-stats   { animation-delay: 0.5s; }
 