		:root{
			--red:#d62b2b;
			--red-dark:#b02020;
			--red-light:#fdf1f1;
			--navy:#1c4597;
			--navy-deep:#16163f;
			--ink:#1e2328;
			--mid:#3a4049;
			--muted:#6b7280;
			--border:#e5e7eb;
			--bg:#f9fafb;
			--white:#ffffff;
			--radius:12px;
			--radius-lg:20px;
			--shadow:0 2px 16px rgba(0,0,0,.07);
			--shadow-md:0 4px 28px rgba(0,0,0,.12);
			--font-body:'DM Sans',sans-serif;
			--font-head:'Outfit',sans-serif;
			--ease:.18s ease;
		}

		*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
		html{-webkit-text-size-adjust:100%;}
		body{
			font-family:var(--font-body);
			color:var(--ink);
			background:var(--white);
			line-height:1.65;
			-webkit-font-smoothing:antialiased;
		}
		a{color:inherit;text-decoration:none;}
		img{max-width:100%;display:block;}
		ul{list-style:none;}
		button{font-family:inherit;}

		@media (prefers-reduced-motion:reduce){
			*{transition:none !important;scroll-behavior:auto !important;}
		}

		.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
		.ia-skip{
			position:absolute;left:-999px;top:0;background:var(--red);color:var(--white);
			padding:.6rem 1rem;z-index:2000;border-radius:0 0 8px 0;
		}
		.ia-skip:focus{left:0;}

		.ia-container{max-width:1240px;margin:0 auto;padding:0 1.1rem;}

		.ia-eyebrow{
			display:inline-flex;align-items:center;gap:.4rem;
			font-size:.72rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
			color:var(--red);margin-bottom:.5rem;
		}
		.ia-heading{
			font-family:var(--font-head);font-weight:700;color:var(--navy);
			font-size:clamp(1.35rem,4.5vw,2rem);line-height:1.2;letter-spacing:-.01em;
			margin-bottom:.65rem;
		}
		.ia-lead{color:var(--muted);font-size:.92rem;line-height:1.75;max-width:62ch;}
		.ia-section{padding:clamp(3.5rem,8vw,5rem) 0;}
		.ia-section-head{margin-bottom:1.75rem;}
		.ia-quote{margin:0;background:var(--red-light);border-left:4px solid var(--red);border-radius:0 var(--radius-lg) var(--radius-lg) 0;padding:1.2rem 1.3rem;color:var(--navy);font-family:var(--font-head);font-size:clamp(1rem,2vw,1.25rem);line-height:1.45;}
		.ia-quote cite{display:block;margin-top:.55rem;color:var(--muted);font-family:var(--font-body);font-size:.76rem;font-style:normal;font-weight:600;letter-spacing:.03em;}

		.ia-btn{
			display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
			padding:.75rem 1.35rem;border-radius:10px;font-weight:600;font-size:.86rem;
			border:1.5px solid transparent;cursor:pointer;transition:background var(--ease),transform var(--ease),border-color var(--ease);
			white-space:nowrap;
		}
		.ia-btn:focus-visible{outline:3px solid var(--red-light);outline-offset:2px;}
		.ia-btn-primary{background:var(--red);color:var(--white);}
		.ia-btn-primary:hover{background:var(--red-dark);transform:translateY(-1px);}
		.ia-btn-outline{background:transparent;border-color:rgba(255,255,255,.3);color:var(--white);}
		.ia-btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.07);}
		.ia-btn-ghost{background:var(--white);border-color:var(--border);color:var(--navy);}
		.ia-btn-ghost:hover{border-color:var(--red);color:var(--red);}

		/* ═══ HEADER ═══ */
		.ia-header{position:sticky;top:0;z-index:1000;background:var(--navy);box-shadow:0 2px 10px rgba(0,0,0,.22);}
		.ia-header-bar{
			display:flex;align-items:center;justify-content:space-between;gap:1rem;
			padding:.55rem 1.1rem;max-width:1240px;margin:0 auto;
		}
		.ia-logo{display:flex;align-items:center;gap:.5rem;flex-shrink:0;}
		.ia-logo img{height:32px;width:auto;object-fit:contain;}
		.ia-logo span{font-family:var(--font-head);font-size:.92rem;font-weight:700;color:var(--white);line-height:1.1;}
		.ia-logo span em{display:block;font-style:normal;font-size:.62rem;font-weight:400;color:rgba(255,255,255,.5);letter-spacing:.07em;text-transform:uppercase;}

		.ia-nav{display:none;}
		.ia-nav ul{display:flex;align-items:center;gap:.1rem;}
		.ia-nav > ul > li{position:relative;}
		.ia-nav > ul > li > a{
			display:block;padding:.5rem .8rem;font-size:.82rem;font-weight:500;
			color:rgba(255,255,255,.78);border-radius:8px;transition:background var(--ease),color var(--ease);
		}
		.ia-nav > ul > li > a:hover,.ia-nav > ul > li > a[aria-current="page"]{color:var(--white);background:rgba(255,255,255,.1);}
		.ia-has-sub > a::after{content:' ▾';font-size:.6rem;opacity:.6;}
		.ia-sub{
			position:absolute;top:calc(100% + 6px);left:0;min-width:200px;background:var(--ink);
			border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);padding:.35rem 0;
			box-shadow:var(--shadow-md);opacity:0;pointer-events:none;transform:translateY(-6px);
			transition:opacity var(--ease),transform var(--ease);
		}
		.ia-has-sub:hover .ia-sub,.ia-has-sub:focus-within .ia-sub{opacity:1;pointer-events:all;transform:translateY(0);}
		.ia-sub a{display:block;padding:.5rem 1rem;font-size:.8rem;color:rgba(255,255,255,.7);}
		.ia-sub a:hover{color:var(--white);background:rgba(255,255,255,.06);}

		.ia-header-call{display:none;}
		.ia-hamburger{
			display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
			width:38px;height:38px;background:rgba(255,255,255,.08);border:none;border-radius:8px;cursor:pointer;
		}
		.ia-hamburger span{width:19px;height:2px;background:var(--white);border-radius:2px;transition:transform var(--ease),opacity var(--ease);}
		.ia-hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
		.ia-hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
		.ia-hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

		.ia-mobile-nav{display:none;background:var(--ink);border-top:1px solid rgba(255,255,255,.07);padding:.6rem 1.1rem 1.1rem;}
		.ia-mobile-nav.is-open{display:block;}
		.ia-mobile-nav a{display:block;padding:.6rem 0;color:rgba(255,255,255,.78);font-size:.9rem;font-weight:500;border-bottom:1px solid rgba(255,255,255,.07);}
		.ia-mobile-nav a:last-child{border-bottom:none;}
		.ia-mobile-nav .ia-sub-link{padding-left:1rem;font-size:.82rem;opacity:.75;}
		.ia-mobile-nav .ia-mob-call{
			margin-top:.75rem;background:var(--red);color:var(--white);text-align:center;border-radius:9px;border-bottom:none;
		}

		/* ═══ BANNER / HERO ═══ */
		.ia-banner{
			background:radial-gradient(ellipse 80% 60% at 85% 20%,rgba(214,43,43,.16) 0%,transparent 65%),
				linear-gradient(160deg,var(--navy-deep) 0%,#1b1b46 100%);
			padding:clamp(3.5rem,8vw,6rem) 0 clamp(2.75rem,6vw,4rem);
		}
		.ia-banner-inner{max-width:1240px;margin:0 auto;padding:0 1.1rem;}
		.ia-badge{
			display:inline-flex;align-items:center;gap:.4rem;background:rgba(214,43,43,.18);
			border:1px solid rgba(214,43,43,.35);border-radius:50px;padding:.28rem .85rem;
			font-size:.7rem;font-weight:600;color:#ff8f8f;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1rem;
		}
		.ia-banner h1{
			font-family:var(--font-head);font-weight:800;color:var(--white);
			font-size:clamp(1.55rem,6vw,2.5rem);line-height:1.16;letter-spacing:-.02em;margin-bottom:.9rem;
		}
		.ia-banner h1 span{color:var(--red);}
		.ia-banner-desc{color:rgba(255,255,255,.64);font-size:.92rem;line-height:1.75;margin-bottom:1.25rem;max-width:60ch;}
		.ia-checks{display:flex;flex-wrap:wrap;gap:.5rem .9rem;margin-bottom:1.1rem;}
		.ia-check{display:flex;align-items:center;gap:.4rem;font-size:.82rem;color:rgba(255,255,255,.82);font-weight:500;}
		.ia-check::before{
			content:'';width:16px;height:16px;flex-shrink:0;background:rgba(214,43,43,.2);
			border:1px solid rgba(214,43,43,.55);border-radius:50%;
			background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ff8f8f' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
			background-size:9px;background-repeat:no-repeat;background-position:center;
		}
		.ia-affiliate{font-size:.74rem;color:rgba(255,255,255,.4);font-style:italic;margin-bottom:1.4rem;}

		/* quick contact strip */
		.ia-quick{
			background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
			border-radius:var(--radius-lg);padding:1rem 1.1rem;
		}
		.ia-quick-chips{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:.15rem;}
		.ia-chip{
			display:inline-flex;align-items:center;gap:.45rem;background:rgba(255,255,255,.08);
			border:1px solid rgba(255,255,255,.14);color:var(--white);border-radius:50px;
			padding:.5rem .95rem;font-size:.82rem;font-weight:600;transition:background var(--ease),border-color var(--ease);
		}
		.ia-chip:hover{background:var(--red);border-color:var(--red);}
		.ia-chip svg{flex-shrink:0;}
		.ia-quick details{margin-top:.75rem;border-top:1px dashed rgba(255,255,255,.15);padding-top:.75rem;}
		.ia-quick summary{
			cursor:pointer;font-size:.82rem;font-weight:600;color:rgba(255,255,255,.85);list-style:none;
		}
		.ia-quick summary::-webkit-details-marker{display:none;}
		.ia-quick summary::before{content:'';display:inline-block;width:.8rem;height:.8rem;margin-right:.35rem;vertical-align:-.08rem;background:currentColor;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25ZM20.71 7.04a1 1 0 0 0 0-1.41l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83Z'/%3E%3C/svg%3E") center/contain no-repeat;}
		.ia-quick-form{display:flex;flex-direction:column;gap:.55rem;margin-top:.75rem;}
		.ia-input,.ia-textarea{
			width:100%;padding:.65rem .85rem;border:1.5px solid rgba(255,255,255,.16);border-radius:9px;
			font-family:var(--font-body);font-size:.85rem;color:var(--white);background:rgba(255,255,255,.05);outline:none;
			transition:border-color var(--ease);
		}
		.ia-input::placeholder,.ia-textarea::placeholder{color:rgba(255,255,255,.4);}
		.ia-input:focus,.ia-textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(214,43,43,.2);}
		.ia-btn:focus-visible,a:focus-visible,summary:focus-visible{outline:3px solid #ffb0b0;outline-offset:3px;}
		.ia-textarea{resize:vertical;min-height:70px;}

		/* ═══ FEATURES ═══ */
		.ia-features{background:var(--bg);border-bottom:1px solid var(--border);}
		.ia-features-grid{display:grid;grid-template-columns:1fr;gap:1px;background:var(--border);border-radius:var(--radius);overflow:hidden;}
		.ia-feature{background:var(--white);padding:1.3rem 1.2rem;}
		.ia-feature-icon{
			width:38px;height:38px;background:var(--red-light);border-radius:10px;
			display:flex;align-items:center;justify-content:center;margin-bottom:.7rem;font-size:1.05rem;
		}
		.ia-feature h3{font-family:var(--font-head);font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:.3rem;}
		.ia-feature p{font-size:.8rem;color:var(--muted);line-height:1.55;}

		/* ═══ ABOUT ═══ */
		.ia-about-grid{display:grid;grid-template-columns:1fr;gap:1.75rem;align-items:center;}
		.ia-about-img img{width:100%;border-radius:var(--radius-lg);border:3px solid var(--border);box-shadow:var(--shadow-md);object-fit:cover;}
		.ia-about-copy p{font-size:.9rem;color:#4b5563;line-height:1.75;margin-bottom:1.25rem;}
		.ia-check-list{margin-bottom:1.4rem;}
		.ia-check-list li{
			display:flex;align-items:center;gap:.7rem;padding:.6rem 0;border-bottom:1px solid var(--border);
			font-size:.86rem;font-weight:600;color:var(--navy);
		}
		.ia-check-list li:last-child{border-bottom:none;}
		.ia-check-list .ia-tick{
			width:21px;height:21px;flex-shrink:0;background:var(--red);border-radius:50%;
			display:flex;align-items:center;justify-content:center;
		}
		.ia-check-list .ia-tick svg{width:11px;height:11px;stroke:var(--white);}
		.ia-about-btns{display:flex;gap:.65rem;flex-wrap:wrap;}

		/* ═══ WHY ═══ */
		.ia-why-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
		.ia-why-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:1.3rem;transition:border-color var(--ease),transform var(--ease);}
		.ia-why-card:hover{border-color:rgba(214,43,43,.3);transform:translateY(-2px);}
		.ia-why-mark{
			width:34px;height:34px;border-radius:9px;background:var(--red-light);color:var(--red);
			display:flex;align-items:center;justify-content:center;font-size:1rem;margin-bottom:.7rem;
		}
		.ia-why-card h3{font-family:var(--font-head);font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:.4rem;}
		.ia-why-card p{font-size:.81rem;color:var(--muted);line-height:1.6;}

		/* ═══ BRANDS (horizontal scroll) ═══ */
		.ia-brand-scroller{
			display:flex;gap:1rem;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:.5rem;
			-webkit-overflow-scrolling:touch;
		}
		.ia-brand-scroller::-webkit-scrollbar{height:6px;}
		.ia-brand-scroller::-webkit-scrollbar-thumb{background:var(--border);border-radius:6px;}
		.ia-brand-card{
			scroll-snap-align:start;flex:0 0 82%;background:var(--white);border:1.5px solid var(--border);
			border-radius:var(--radius-lg);padding:1.1rem;display:flex;align-items:center;gap:1rem;
			transition:border-color var(--ease),box-shadow var(--ease);
		}
		.ia-brand-card:hover{border-color:rgba(214,43,43,.3);box-shadow:var(--shadow);}
		.ia-brand-logo{
			flex-shrink:0;width:60px;height:60px;background:var(--bg);border:1px solid var(--border);
			border-radius:var(--radius);display:flex;align-items:center;justify-content:center;overflow:hidden;
		}
		.ia-brand-logo img{width:46px;height:46px;object-fit:contain;}
		.ia-brand-tag{display:block;font-size:.66rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--red);margin-bottom:.2rem;}
		.ia-brand-card h3{font-family:var(--font-head);font-size:.88rem;font-weight:700;color:var(--navy);margin-bottom:.25rem;}
		.ia-brand-card p{font-size:.76rem;color:var(--muted);line-height:1.5;}
		.ia-scroll-hint{font-size:.75rem;color:var(--muted);margin-top:.6rem;display:flex;align-items:center;gap:.35rem;}

		/* ═══ APPLIANCES ═══ */
		.ia-appliance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;}
		.ia-appliance-card{
			background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);
			padding:1rem .6rem;text-align:center;display:flex;flex-direction:column;align-items:center;gap:.5rem;
			transition:border-color var(--ease),box-shadow var(--ease),transform var(--ease);
		}
		.ia-appliance-card:hover{border-color:rgba(214,43,43,.35);box-shadow:var(--shadow);transform:translateY(-2px);}
		.ia-appliance-card img{width:44px;height:44px;object-fit:contain;}
		.ia-appliance-card p{font-size:.72rem;font-weight:600;color:var(--mid);line-height:1.3;}
		.ia-appliance-card:hover p{color:var(--red);}

		/* ═══ URGENT CTA STRIP ═══ */
		.ia-urgent{background:var(--red-light);border-top:2px solid rgba(214,43,43,.12);border-bottom:2px solid rgba(214,43,43,.12);padding:1.6rem 0;}
		.ia-urgent-inner{display:flex;flex-direction:column;gap:1rem;align-items:flex-start;}
		.ia-urgent-inner h3{font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:var(--ink);}
		.ia-urgent-phone{
			display:inline-flex;align-items:center;gap:.85rem;background:var(--white);border:2px solid rgba(214,43,43,.2);
			border-radius:var(--radius-lg);padding:.75rem 1.2rem;box-shadow:var(--shadow);transition:border-color var(--ease),transform var(--ease);
		}
		.ia-urgent-phone:hover{border-color:var(--red);transform:translateY(-2px);}
		.ia-urgent-icon{width:42px;height:42px;background:var(--red);border-radius:11px;display:flex;align-items:center;justify-content:center;color:var(--white);flex-shrink:0;}
		.ia-urgent-num{font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--red);display:block;}
		.ia-urgent-label{font-size:.68rem;font-weight:600;color:var(--muted);letter-spacing:.05em;text-transform:uppercase;}

		/* ═══ SERVICES + SIDEBAR ═══ */
		.ia-services-grid{display:grid;grid-template-columns:1fr;gap:2rem;align-items:start;}

		.ia-ticket{
			background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);
			padding:1.3rem 1.4rem;margin-bottom:1.1rem;position:relative;overflow:hidden;
			transition:border-color var(--ease),box-shadow var(--ease);
		}
		.ia-ticket::before{
			content:'';position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--red);
		}
		.ia-ticket:hover{border-color:rgba(214,43,43,.25);box-shadow:var(--shadow);}
		.ia-ticket-head{margin-bottom:.55rem;}
		.ia-ticket-head a:hover h3{color:var(--red);}
		.ia-ticket h3{font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.15rem;transition:color var(--ease);}
		.ia-ticket-tag{font-size:.72rem;color:var(--red);font-weight:600;letter-spacing:.04em;text-transform:uppercase;}
		.ia-ticket p{font-size:.86rem;color:#4b5563;line-height:1.68;margin-bottom:.75rem;}
		.ia-ticket-meta{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;padding-top:.7rem;border-top:1px dashed var(--border);}
		.ia-avail{
			display:inline-flex;align-items:center;gap:.35rem;background:#f0fdf4;border:1px solid #bbf7d0;color:#15803d;
			font-size:.72rem;font-weight:600;padding:.25rem .7rem;border-radius:50px;
		}
		.ia-avail::before{content:'';width:.4rem;height:.4rem;border-radius:50%;background:currentColor;}
		.ia-loc{font-size:.76rem;color:var(--muted);display:flex;align-items:center;gap:.3rem;}

		.ia-all-services{
			display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.6rem;background:var(--navy);
			color:var(--white);border-radius:10px;font-size:.82rem;font-weight:600;letter-spacing:.03em;
			text-transform:uppercase;margin-top:.4rem;transition:background var(--ease);
		}
		.ia-all-services:hover{background:var(--red);}

		.ia-widget{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:1.25rem 1.4rem;margin-bottom:1.15rem;}
		.ia-widget h3{
			font-family:var(--font-head);font-size:.84rem;font-weight:700;color:var(--navy);letter-spacing:.03em;
			text-transform:uppercase;padding-bottom:.6rem;border-bottom:2px solid var(--red);margin-bottom:.9rem;
		}
		.ia-widget p{font-size:.81rem;color:var(--muted);line-height:1.65;margin-bottom:.7rem;}
		.ia-widget a{color:var(--red);}
		.ia-widget.ia-dark{background:var(--ink);border-color:rgba(255,255,255,.08);}
		.ia-widget.ia-dark h3{color:var(--white);}
		.ia-widget.ia-dark .ia-cat-list li a{color:rgba(255,255,255,.65);border-bottom-color:rgba(255,255,255,.08);}
		.ia-widget.ia-dark .ia-cat-list li a:hover{color:var(--white);}

		.ia-cat-list li a{
			display:flex;align-items:center;justify-content:space-between;padding:.5rem 0;font-size:.82rem;
			color:var(--mid);border-bottom:1px solid var(--border);transition:color var(--ease);
		}
		.ia-cat-list li:last-child a{border-bottom:none;}
		.ia-cat-list li a:hover{color:var(--red);}
		.ia-cat-list li a::after{content:'›';font-size:1rem;line-height:1;opacity:.55;}

		.ia-blog-entry{padding:.7rem 0;border-bottom:1px solid var(--border);}
		.ia-blog-entry:last-child{border-bottom:none;}
		.ia-blog-entry a{font-size:.83rem;font-weight:600;color:var(--navy);display:block;margin-bottom:.3rem;}
		.ia-blog-entry a:hover{color:var(--red);}
		.ia-blog-entry span{
			font-size:.75rem;color:var(--muted);line-height:1.55;display:-webkit-box;
			-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
		}

		/* ═══ CTA BAND ═══ */
		.ia-cta-band{background:linear-gradient(100deg,var(--navy) 0%,#2a1010 100%);padding:2.75rem 0;text-align:center;}
		.ia-cta-band h3{font-family:var(--font-head);font-size:1.35rem;font-weight:700;color:var(--white);margin-bottom:.5rem;}
		.ia-cta-band p{color:rgba(255,255,255,.62);font-size:.88rem;margin-bottom:1.4rem;max-width:52ch;margin-left:auto;margin-right:auto;}
		.ia-cta-btns{display:flex;gap:.7rem;justify-content:center;flex-wrap:wrap;}

		/* ═══ FOOTER ═══ */
		.ia-footer{background:var(--navy);color:rgba(255,255,255,.7);}
		.ia-footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;padding:2.75rem 0 1.75rem;}
		.ia-f-brand span{font-family:var(--font-head);font-size:1.02rem;font-weight:700;color:var(--white);display:block;margin-bottom:.6rem;}
		.ia-f-brand p{font-size:.81rem;line-height:1.7;margin-bottom:.9rem;color:rgba(255,255,255,.5);}
		.ia-f-contact{display:flex;align-items:flex-start;gap:.5rem;font-size:.8rem;color:rgba(255,255,255,.6);margin-bottom:.4rem;}
		.ia-f-contact a:hover{color:var(--white);}
		.ia-f-contact svg{margin-top:1px;opacity:.5;flex-shrink:0;}
		.ia-footer h4{
			font-family:var(--font-head);font-size:.75rem;font-weight:700;color:var(--white);letter-spacing:.07em;
			text-transform:uppercase;margin-bottom:.85rem;padding-bottom:.45rem;border-bottom:1px solid rgba(255,255,255,.1);
		}
		.ia-footer ul li{margin-bottom:.4rem;}
		.ia-footer ul li a{font-size:.81rem;color:rgba(255,255,255,.55);transition:color var(--ease);}
		.ia-footer ul li a:hover{color:var(--white);}
		.ia-hours{display:flex;justify-content:space-between;font-size:.78rem;padding:.3rem 0;border-bottom:1px dashed rgba(255,255,255,.1);color:rgba(255,255,255,.6);}
		.ia-hours:last-of-type{border-bottom:none;}
		.ia-f-socials{display:flex;gap:.5rem;margin-top:.9rem;}
		.ia-social{
			width:32px;height:32px;background:rgba(255,255,255,.08);border-radius:8px;display:flex;align-items:center;
			justify-content:center;font-size:.75rem;color:rgba(255,255,255,.55);transition:background var(--ease),color var(--ease);
		}
		.ia-social:hover{background:var(--red);color:var(--white);}
		.ia-footer-bottom{
			border-top:1px solid rgba(255,255,255,.09);padding:1rem 0;display:flex;align-items:center;
			justify-content:space-between;flex-wrap:wrap;gap:.5rem;
		}
		.ia-footer-bottom p{font-size:.74rem;color:rgba(255,255,255,.38);}

		/* ═══ FLOATING PILLS ═══ */
		.ia-float{
			position:fixed;right:1rem;width:52px;height:52px;border-radius:50%;display:flex;align-items:center;
			justify-content:center;color:var(--white);box-shadow:var(--shadow-md);z-index:900;transition:transform var(--ease);
		}
		.ia-float:hover{transform:scale(1.06);}
		.ia-float-call{bottom:4.6rem;background:var(--red);}
		.ia-float-wa{bottom:1rem;background:#25d366;}

		/* ═══ RESPONSIVE — MOBILE FIRST ═══ */
		@media (min-width:560px){
			.ia-features-grid{grid-template-columns:repeat(2,1fr);}
			.ia-why-grid{grid-template-columns:repeat(2,1fr);}
			.ia-appliance-grid{grid-template-columns:repeat(4,1fr);}
			.ia-brand-card{flex:0 0 60%;}
			.ia-cta-band h3{font-size:1.5rem;}
		}

		@media (min-width:768px){
			.ia-nav{display:flex;align-items:center;gap:.75rem;}
			.ia-hamburger,.ia-mobile-nav{display:none;}
			.ia-header-call{
				display:inline-flex;align-items:center;gap:.4rem;padding:.5rem 1rem;background:var(--red);
				color:var(--white);border-radius:8px;font-size:.78rem;font-weight:600;transition:background var(--ease);
			}
			.ia-header-call:hover{background:var(--red-dark);}
			.ia-header-bar{padding:.6rem 1.1rem;}

			.ia-banner-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:2.5rem;align-items:center;}
			.ia-about-grid{grid-template-columns:1fr 1fr;gap:2.75rem;}
			.ia-services-grid{grid-template-columns:1fr 320px;gap:2.5rem;}
			.ia-urgent-inner{flex-direction:row;align-items:center;justify-content:space-between;}
			.ia-footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.25rem;}
			.ia-appliance-grid{grid-template-columns:repeat(6,1fr);}
			.ia-brand-card{flex:0 0 44%;}
		}

		@media (min-width:1024px){
			.ia-features-grid{grid-template-columns:repeat(4,1fr);}
			.ia-why-grid{grid-template-columns:repeat(3,1fr);}
			.ia-brand-card{flex:0 0 32%;}
			.ia-section{padding:4rem 0;}
		}
